diff --git a/1_Create_CREP_Data.r b/1_Create_CREP_Data.r index de616dd..0c70e3f 100644 --- a/1_Create_CREP_Data.r +++ b/1_Create_CREP_Data.r @@ -116,8 +116,6 @@ RES <- cbind(rep(WELL,17),2009:2025,rep(C$program[1],17),RES) %>% as_tibble colnames(RES) <- c("wdid","year","program","active") return(RES) } -CREP_PERM -CREP_TEMP for(i in SBD1_TEMP_FALLOW %>% pull(wdid) %>% unique){ CURRENT <- IN_PROGRAM(i,SBD1_TEMP_FALLOW) @@ -133,7 +131,7 @@ PROGRAM_ALL(SBD1_TEMP_FALLOW), PROGRAM_ALL(SB22_DATA)) %>% unique %>% mutate(active=as.numeric(active)) ALL_PROGRAMS <- ALL_PROGRAMS%>% pivot_wider(values_from=active,names_from=program)%>% replace(is.na(.), 0) ALL_PROGRAMS <- ALL_PROGRAMS %>% mutate(CREP_any=ifelse(CREP_perm+CREP_temp>0,1,0)) %>% select(wdid,year,CREP_any,everything()) - +dir.create("Data/Output_Data",showWarnings=FALSE,recursive=TRUE) write_csv(ALL_PROGRAMS,"Data/Output_Data/Fallow_Program_Data.csv") saveRDS(ALL_PROGRAMS,"Data/Output_Data/Fallow_Program_Data.rds") diff --git a/2_Proc.r b/2_Proc.r index ce90591..0c57691 100644 --- a/2_Proc.r +++ b/2_Proc.r @@ -1,34 +1,41 @@ library(tidyverse) library(janitor) +################### +STRUCTURES <- read_csv('https://dwr.state.co.us/Rest/GET/api/v2/structures/?format=csv&dateFormat=dateOnly&fields=wdid%2CciuCode%2CstructureType%2CwaterSource%2CassociatedCaseNumbers%2CassociatedPermits%2CassociatedContacts%2CwaterDistrict%2Csubdistrict%2Ccounty%2CmanagementDistrictName%2Clatdecdeg%2Clongdecdeg&division=3',skip=2) %>% clean_names() %>% mutate(wdid=as.character(wdid)) +WELLS <- STRUCTURES %>% filter(structure_type=='WELL') +WELLS <- WELLS %>% filter(ciu_code %in% c('A','H')) #Keep only active wells or wells with historic records of pumping +WELLS <- WELLS %>% select( wdid,contacts=associated_contacts,latitude=latdecdeg,longitude=longdecdeg) #Read the data files which include the current list of wells by subdistrict, to create indicator variables. This is the list of wells currently in the subdistrict using hydrobase search filter. Note that the time of entry is not found here and added later. -SBD_LINK <- rbind(read_csv("Data/SBD_Data/StructureList_SBD1.csv") %>% mutate(SBD=1), -read_csv("Data/SBD_Data/StructureList_SBD2.csv") %>% mutate(SBD=2), -read_csv("Data/SBD_Data/StructureList_SBD3.csv") %>% mutate(SBD=3), -read_csv("Data/SBD_Data/StructureList_SBD4.csv") %>% mutate(SBD=4), -read_csv("Data/SBD_Data/StructureList_SBD5.csv") %>% mutate(SBD=5), -read_csv("Data/SBD_Data/StructureList_SBD6.csv") %>% mutate(SBD=6)) %>% clean_names %>% mutate(wdid=as.character(wdid)) +SBD_LINK <- rbind(read_csv("Data/SBD_Data/StructureList_SBD1.csv") %>% clean_names %>% mutate(sbd=1) %>% select(wdid,sbd), +read_csv("Data/SBD_Data/StructureList_SBD2.csv")%>% clean_names %>% mutate(sbd=2) %>% select(wdid,sbd), +read_csv("Data/SBD_Data/StructureList_SBD3.csv")%>% clean_names %>% mutate(sbd=3) %>% select(wdid,sbd), +read_csv("Data/SBD_Data/StructureList_SBD4.csv")%>% clean_names %>% mutate(sbd=4) %>% select(wdid,sbd), +read_csv("Data/SBD_Data/StructureList_SBD5.csv")%>% clean_names %>% mutate(sbd=5) %>% select(wdid,sbd), +read_csv("Data/SBD_Data/StructureList_SBD6.csv")%>% clean_names %>% mutate(sbd=6) %>% select(wdid,sbd)) %>% mutate(wdid=as.character(wdid)) SBD_LINK <- SBD_LINK %>% pivot_wider(values_from=sbd,names_from=sbd,names_prefix="SBD") %>% replace(is.na(.), 0) SBD_LINK[2:7][SBD_LINK[2:7]>0] <- 1 -SBD1_WELLS <- SBD_LINK %>% select(wdid) %>% unique +SBD1_WELLS <- SBD_LINK %>% filter(SBD1==1) %>% select(wdid) ############Data from each of the Annuall Replacement Plans or in the case of 2000 the Plan of Water Management. A list of wells in Subdistrict one was collected to create a time depdent indicator for being in SBD1. -SBD1_WELLS <- read_csv("Data/ARP/SBD1_Wells.csv")%>% group_by(wdid) %>% filter(year==min(year)) %>% mutate(wdid=as.character(wdid)) %>% rename(SBD1_year=year) %>% ungroup %>% inner_join(SBD1_WELLS) -SBD1_WELLS %>% group_by(SBD1_year) %>% summarize(n()) -SBD1_WELLS %>% filter(wdid=='2706148') +SBD1_WELLS <- SBD1_WELLS %>% left_join( (read_csv("Data/ARP/SBD1_Wells.csv")%>% group_by(wdid) %>% filter(year==min(year)) %>% mutate(wdid=as.character(wdid)) %>% rename(SBD1_year=year) %>% ungroup)) +WELLS <- WELLS[!(WELLS$wdid %in% c(SBD1_WELLS %>% filter(is.na(SBD1_year)) %>% pull(wdid))),]#Drop odd records which were never in the SBD1 reports but are listed as SBD1 wells +SBD1_WELLS <- SBD1_WELLS %>% filter(!is.na(SBD1_year)) + + #######Original Wells based on map #This data comes from a manual map of SBD1 in 2009 made in QGIS. Wells are intersected with the hand drawn layer. The wells identified as being in the SBD1 region at this time should be assumed to have entered the subdistrict at the start of the program (2006 with first pumping data in 2009). This fixes the problem that some wells are identified as being in SBD1 in ARP reports but only because they were missed in earlier reports. It looks like most updated wells were missed due to category issues, such as not knowing the well was used for agriculture. This process should find most wells that were enrolled at the start, and later picked up so as to treat them as 2006/2009 wells instead of treating them as having entered in say 2016 or 2020 when they were first picked up by the SBD1 list. -SBD1_FROM_MAP <- read_csv("Data/SBD_Data/Intersect_SBD1_Area_Wells.csv") -SBD1_FROM_MAP <- SBD1_FROM_MAP %>% pull(WELL_ID) %>% unique -SBD1_FROM_MAP <- SBD1_FROM_MAP[(SBD1_FROM_MAP %in% SBD1_WELLS$wdid) ] #Remove any wells that are still not in SBD1. These were most likely picked up in error. For example if part of the parcel is in SBD1 but the well serves another parcel outside of the area, or because I drew the boundary too large. -SBD1_WELLS[SBD1_WELLS$wdid %in% SBD1_FROM_MAP,"SBD1_year"] <- 2011 -SBD1_WELLS %>% filter(SBD1_year!=2011) - +SBD1_FROM_MAP <- read_csv("Data/SBD_Data/SBD1_Map_Wells.csv") %>% mutate(wdid=as.character(wdid)) %>% mutate(IN_EXTENT=1) +SBD1_WELLS <- SBD1_FROM_MAP %>% full_join(SBD1_WELLS) %>% mutate(IN_EXTENT=ifelse(is.na(IN_EXTENT),0,1)) +SBD1_WELLS <- SBD1_WELLS %>% filter(!is.na(SBD1_year))%>% mutate(SBD1_year=ifelse(IN_EXTENT==1,2011,SBD1_year)) %>% select(-IN_EXTENT) +SBD_LINK <- SBD1_WELLS %>% full_join(SBD_LINK) %>% mutate(SBD1_year=ifelse(is.na(SBD1_year),Inf,SBD1_year),SBD1=ifelse(SBD1_year==Inf,0,1)) #Make sure both data sets conform. +WELLS ######################Static Data -WELL_DATA <- read_csv("Data/Structure_Data/Structures_with_Diversions.csv")%>% clean_names() %>% mutate(wdid=as.character(wdid)) %>% select(wdid,contacts,latitude,longitude) #Start with well data - -STATIC_DATA <- WELL_DATA%>% left_join(SBD1_WELLS) %>% left_join(SBD_LINK) %>% replace(is.na(.), 0) #Include subdistrict indicators -STATIC_DATA$SBD1_year <- ifelse(STATIC_DATA$SBD1_year==0,Inf,STATIC_DATA$SBD1_year ) -STATIC_DATA <- STATIC_DATA %>% left_join(read_csv("Data/Output_Data/Ditch_Indicators.csv")%>% mutate(wdid=as.character(wdid)))%>% replace(is.na(.), 0) +STATIC_DATA <- WELLS%>% left_join(SBD_LINK) %>% mutate(SBD1_year=ifelse(is.na(SBD1_year),Inf,SBD1_year)) +STATIC_DATA[,-1:-5] <- STATIC_DATA[,-1:-5] %>% replace(is.na(.), 0) #Include subdistrict indicators +DITCH_DATA <- readRDS("Data/Crop_Parcel_Data/Well_Ditch_Link.rds") +STATIC_DATA <- STATIC_DATA %>% left_join(DITCH_DATA ) +DITCH_COL_NAMES <-colnames(STATIC_DATA)[grep("ditch",colnames(STATIC_DATA))] +STATIC_DATA[,DITCH_COL_NAMES] <- STATIC_DATA[,DITCH_COL_NAMES]%>% replace(is.na(.),0) STATIC_DATA <- STATIC_DATA%>% left_join(read_csv("Data/Output_Data/Crops_Before_2009.csv") %>% mutate(wdid=as.character(wdid))) #Add crop data STATIC_DATA$CROPS_PRE_2009 <- ifelse(is.na(STATIC_DATA$per_alfalfa),0,1) #Make an indicator to tell if crops were grown in 2002 or 2005, or if no crop data was available. diff --git a/Data/Crop_Parcel_Data/Proc_Ditches.r b/Data/Crop_Parcel_Data/Proc_Ditches.r new file mode 100644 index 0000000..8903a2f --- /dev/null +++ b/Data/Crop_Parcel_Data/Proc_Ditches.r @@ -0,0 +1,20 @@ +library(tidyverse) +ALL_PARCEL_DATA <- read_csv("WELL_DITCH_PARCEL.csv") +NAMES <- colnames(ALL_PARCEL_DATA ) +PARCEL_LINK <- ALL_PARCEL_DATA %>% select(NAMES[grep("PARCEL_ID|GW_ID|SW_WDID",NAMES )]) +PARCEL_LINK <- PARCEL_LINK %>% pivot_longer(-PARCEL_ID,values_to='wdid',names_to="type") %>% filter(!is.na(wdid)) +PARCEL_LINK$type <- ifelse(grepl("SW",PARCEL_LINK$type ),"SW","GW") + +WELL <- PARCEL_LINK %>% filter(type=='GW') %>% select(-type) %>% unique +DITCH <- PARCEL_LINK %>% filter(type=='SW') %>% rename(ditch_id=wdid) %>% select(-type) %>% unique + +DITCH_WELL <- WELL %>% inner_join(DITCH) %>% select(-PARCEL_ID) %>% unique + +#TOP_20 <- (DITCH_WELL %>% group_by(ditch_id) %>% summarize(num=n()) %>% arrange(desc(num)))[1:20,] %>% pull(ditch_id) +#DITCH_WELL$ditch_id[!(DITCH_WELL$ditch_id %in% TOP_20) ] <- "Other" +DITCH_WELL <- DITCH_WELL %>% unique +DITCH_WELL <- DITCH_WELL %>% pivot_wider(values_from=ditch_id,names_from=ditch_id,names_prefix="ditch_") +DITCH_WELL[,-1] <- ifelse(is.na(DITCH_WELL[,-1]),0,1) +DITCH_WELL <- DITCH_WELL %>% mutate(wdid=as.character(wdid)) + +saveRDS(DITCH_WELL,"Well_Ditch_Link.rds") diff --git a/Data/SBD_Data/SBD1_Map_Wells.csv b/Data/SBD_Data/SBD1_Map_Wells.csv new file mode 100644 index 0000000..2e99615 --- /dev/null +++ b/Data/SBD_Data/SBD1_Map_Wells.csv @@ -0,0 +1,2847 @@ +wdid +"2005001" +"2005007" +"2005018" +"2005022" +"2005033" +"2005035" +"2005037" +"2005038" +"2005040" +"2005041" +"2005042" +"2005046" +"2005047" +"2005049" +"2005050" +"2005052" +"2005053" +"2005057" +"2005058" +"2005059" +"2005063" +"2005077" +"2005080" +"2005084" +"2005085" +"2005092" +"2005094" +"2005095" +"2005096" +"2005098" +"2005103" +"2005104" +"2005105" +"2005107" +"2005112" +"2005116" +"2005119" +"2005120" +"2005121" +"2005125" +"2005126" +"2005127" +"2005131" +"2005132" +"2005133" +"2005134" +"2005135" +"2005137" +"2005138" +"2005141" +"2005142" +"2005145" +"2005148" +"2005155" +"2005156" +"2005159" +"2005161" +"2005162" +"2005163" +"2005169" +"2005171" +"2005172" +"2005176" +"2005177" +"2005178" +"2005179" +"2005181" +"2005185" +"2005186" +"2005192" +"2005193" +"2005197" +"2005201" +"2005202" +"2005205" +"2005206" +"2005207" +"2005211" +"2005212" +"2005214" +"2005315" +"2005316" +"2005324" +"2005325" +"2005334" +"2005337" +"2005338" +"2005339" +"2005340" +"2005383" +"2005384" +"2005388" +"2005391" +"2005393" +"2005399" +"2005407" +"2005408" +"2005409" +"2005410" +"2005411" +"2005424" +"2005425" +"2005429" +"2005430" +"2005431" +"2005433" +"2005434" +"2005435" +"2005439" +"2005443" +"2005444" +"2005446" +"2005447" +"2005448" +"2005451" +"2005452" +"2005454" +"2005461" +"2005462" +"2005465" +"2005466" +"2005467" +"2005468" +"2005469" +"2005470" +"2005471" +"2005473" +"2005474" +"2005476" +"2005481" +"2005482" +"2005483" +"2005484" +"2005488" +"2005489" +"2005490" +"2005491" +"2005492" +"2005493" +"2005494" +"2005495" +"2005496" +"2005497" +"2005498" +"2005499" +"2005503" +"2005504" +"2005505" +"2005507" +"2005508" +"2005509" +"2005510" +"2005511" +"2005512" +"2005513" +"2005514" +"2005515" +"2005516" +"2005517" +"2005518" +"2005519" +"2005520" +"2005521" +"2005522" +"2005523" +"2005524" +"2005525" +"2005526" +"2005527" +"2005528" +"2005529" +"2005530" +"2005531" +"2005532" +"2005533" +"2005534" +"2005535" +"2005536" +"2005537" +"2005538" +"2005560" +"2005567" +"2005568" +"2005569" +"2005570" +"2005571" +"2005572" +"2005573" +"2005574" +"2005575" +"2005576" +"2005578" +"2005579" +"2005580" +"2005582" +"2005583" +"2005584" +"2005585" +"2005586" +"2005587" +"2005588" +"2005589" +"2005590" +"2005592" +"2005593" +"2005594" +"2005595" +"2005596" +"2005597" +"2005598" +"2005599" +"2005601" +"2005603" +"2005604" +"2005605" +"2005608" +"2005609" +"2005610" +"2005612" +"2005613" +"2005614" +"2005617" +"2005621" +"2005641" +"2005642" +"2005643" +"2005645" +"2005648" +"2005652" +"2005653" +"2005654" +"2005656" +"2005659" +"2005660" +"2005662" +"2005663" +"2005665" +"2005666" +"2005668" +"2005669" +"2005670" +"2005671" +"2005672" +"2005673" +"2005674" +"2005675" +"2005676" +"2005677" +"2005678" +"2005679" +"2005680" +"2005681" +"2005682" +"2005683" +"2005684" +"2005685" +"2005687" +"2005689" +"2005690" +"2005691" +"2005692" +"2005693" +"2005694" +"2005695" +"2005696" +"2005697" +"2005698" +"2005699" +"2005700" +"2005702" +"2005703" +"2005704" +"2005705" +"2005707" +"2005709" +"2005710" +"2005711" +"2005712" +"2005713" +"2005714" +"2005715" +"2005716" +"2005717" +"2005718" +"2005719" +"2005720" +"2005721" +"2005723" +"2005726" +"2005727" +"2005728" +"2005729" +"2005731" +"2005732" +"2005733" +"2005734" +"2005735" +"2005736" +"2005737" +"2005738" +"2005739" +"2005740" +"2005741" +"2005742" +"2005743" +"2005745" +"2005746" +"2005747" +"2005748" +"2005749" +"2005750" +"2005751" +"2005752" +"2005753" +"2005754" +"2005755" +"2005756" +"2005757" +"2005758" +"2005759" +"2005760" +"2005761" +"2005762" +"2005763" +"2005764" +"2005765" +"2005766" +"2005767" +"2005768" +"2005769" +"2005770" +"2005771" +"2005772" +"2005773" +"2005774" +"2005775" +"2005776" +"2005777" +"2005778" +"2005779" +"2005780" +"2005781" +"2005782" +"2005784" +"2005786" +"2005787" +"2005789" +"2005791" +"2005801" +"2005803" +"2005807" +"2005809" +"2005811" +"2005812" +"2005813" +"2005814" +"2005815" +"2005816" +"2005817" +"2005819" +"2005820" +"2005821" +"2005823" +"2005824" +"2005825" +"2005826" +"2005827" +"2005828" +"2005830" +"2005831" +"2005832" +"2005833" +"2005834" +"2005836" +"2005837" +"2005838" +"2005839" +"2005840" +"2005841" +"2005842" +"2005843" +"2005844" +"2005845" +"2005846" +"2005847" +"2005848" +"2005849" +"2005850" +"2005851" +"2005852" +"2005853" +"2005855" +"2005857" +"2005859" +"2005862" +"2005864" +"2005868" +"2005870" +"2005871" +"2005876" +"2005883" +"2005884" +"2005886" +"2005888" +"2005889" +"2005890" +"2005907" +"2005909" +"2005913" +"2005916" +"2005918" +"2005919" +"2005920" +"2005921" +"2005923" +"2005924" +"2005926" +"2005928" +"2005930" +"2005931" +"2005932" +"2005935" +"2005936" +"2005937" +"2005941" +"2005948" +"2005949" +"2005950" +"2005951" +"2005952" +"2005953" +"2005954" +"2005955" +"2006003" +"2006005" +"2006007" +"2006008" +"2006009" +"2006011" +"2006013" +"2006014" +"2006016" +"2006017" +"2006018" +"2006020" +"2006021" +"2006023" +"2006026" +"2006027" +"2006028" +"2006029" +"2006030" +"2006031" +"2006032" +"2006152" +"2006153" +"2006176" +"2006177" +"2006178" +"2006179" +"2006218" +"2006224" +"2006235" +"2006248" +"2006251" +"2006252" +"2006253" +"2006254" +"2006262" +"2006263" +"2006264" +"2006266" +"2006269" +"2006270" +"2006272" +"2006274" +"2006275" +"2006276" +"2006278" +"2006280" +"2006281" +"2006282" +"2006283" +"2006284" +"2006285" +"2006286" +"2006287" +"2006288" +"2006289" +"2006290" +"2006291" +"2006292" +"2006293" +"2006294" +"2006297" +"2006299" +"2006300" +"2006301" +"2006305" +"2006307" +"2006309" +"2006310" +"2006311" +"2006312" +"2006313" +"2006314" +"2006315" +"2006319" +"2006320" +"2006321" +"2006322" +"2006323" +"2006325" +"2006326" +"2006327" +"2006328" +"2006329" +"2006330" +"2006331" +"2006332" +"2006333" +"2006334" +"2006335" +"2006336" +"2006337" +"2006338" +"2006339" +"2006342" +"2006343" +"2006344" +"2006345" +"2006346" +"2006347" +"2006348" +"2006349" +"2006350" +"2006351" +"2006353" +"2006354" +"2006355" +"2006356" +"2006358" +"2006359" +"2006360" +"2006362" +"2006364" +"2006365" +"2006366" +"2006367" +"2006368" +"2006369" +"2006370" +"2006372" +"2006373" +"2006374" +"2006375" +"2006376" +"2006378" +"2006379" +"2006380" +"2006381" +"2006382" +"2006383" +"2006384" +"2006385" +"2006386" +"2006388" +"2006389" +"2006390" +"2006391" +"2006392" +"2006394" +"2006396" +"2006397" +"2006398" +"2006399" +"2006402" +"2006403" +"2006405" +"2006410" +"2006411" +"2006413" +"2006414" +"2006415" +"2006416" +"2006418" +"2006420" +"2006422" +"2006423" +"2006424" +"2006427" +"2006428" +"2006429" +"2006431" +"2006435" +"2006437" +"2006438" +"2006439" +"2006441" +"2006444" +"2006445" +"2006447" +"2006448" +"2006449" +"2006450" +"2006451" +"2006453" +"2006455" +"2006457" +"2006458" +"2006459" +"2006460" +"2006461" +"2006462" +"2006463" +"2006464" +"2006466" +"2006468" +"2006469" +"2006470" +"2006472" +"2006474" +"2006475" +"2006476" +"2006478" +"2006479" +"2006480" +"2006481" +"2006482" +"2006483" +"2006484" +"2006492" +"2006494" +"2006496" +"2006497" +"2006498" +"2006500" +"2006501" +"2006502" +"2006504" +"2006512" +"2006513" +"2006514" +"2006515" +"2006516" +"2006518" +"2006519" +"2006520" +"2006521" +"2006522" +"2006524" +"2006525" +"2006526" +"2006527" +"2006528" +"2006529" +"2006531" +"2006532" +"2006533" +"2006534" +"2006535" +"2006536" +"2006538" +"2006540" +"2006541" +"2006542" +"2006545" +"2006546" +"2006547" +"2006549" +"2006555" +"2006557" +"2006560" +"2006561" +"2006562" +"2006563" +"2006564" +"2006565" +"2006566" +"2006567" +"2006570" +"2006571" +"2006572" +"2006573" +"2006574" +"2006575" +"2006576" +"2006577" +"2006579" +"2006580" +"2006581" +"2006585" +"2006587" +"2006588" +"2006589" +"2006591" +"2006592" +"2006593" +"2006594" +"2006596" +"2006597" +"2006598" +"2006599" +"2006601" +"2006602" +"2006604" +"2006605" +"2006606" +"2006608" +"2006610" +"2006612" +"2006613" +"2006615" +"2006617" +"2006622" +"2006623" +"2006624" +"2006626" +"2006627" +"2006628" +"2006629" +"2006630" +"2006631" +"2006632" +"2006633" +"2006634" +"2006635" +"2006637" +"2006643" +"2006644" +"2006645" +"2006646" +"2006647" +"2006648" +"2006649" +"2006654" +"2006655" +"2006656" +"2006659" +"2006662" +"2006668" +"2006669" +"2006670" +"2006673" +"2006675" +"2006678" +"2006679" +"2006684" +"2006685" +"2006686" +"2008001" +"2008002" +"2008003" +"2008005" +"2008008" +"2008009" +"2008011" +"2008012" +"2008016" +"2008017" +"2008018" +"2008026" +"2008027" +"2008030" +"2008031" +"2008032" +"2008033" +"2008034" +"2008037" +"2008038" +"2008039" +"2008040" +"2008041" +"2008042" +"2008046" +"2008048" +"2008050" +"2008129" +"2008130" +"2008139" +"2008141" +"2008142" +"2008143" +"2008144" +"2008145" +"2008146" +"2008147" +"2008148" +"2008149" +"2008150" +"2008153" +"2008154" +"2008155" +"2008156" +"2008157" +"2008161" +"2008163" +"2008164" +"2008165" +"2008166" +"2008167" +"2008169" +"2008172" +"2008173" +"2008174" +"2008177" +"2008178" +"2008180" +"2008181" +"2008182" +"2008183" +"2008185" +"2008186" +"2008187" +"2008189" +"2008190" +"2008191" +"2008192" +"2008193" +"2008195" +"2008196" +"2008197" +"2008198" +"2008199" +"2008203" +"2008204" +"2008207" +"2008213" +"2008214" +"2008215" +"2008216" +"2008220" +"2008221" +"2008222" +"2008223" +"2008224" +"2008225" +"2008226" +"2008227" +"2008228" +"2008229" +"2008230" +"2008231" +"2008235" +"2008238" +"2008239" +"2008240" +"2008241" +"2008243" +"2008251" +"2008252" +"2008254" +"2008258" +"2008262" +"2008266" +"2008270" +"2008271" +"2008272" +"2008273" +"2008274" +"2008275" +"2008276" +"2008277" +"2008283" +"2008285" +"2008286" +"2008287" +"2008288" +"2008289" +"2008290" +"2008291" +"2008292" +"2008295" +"2008297" +"2008298" +"2008299" +"2008302" +"2008306" +"2008308" +"2008310" +"2008317" +"2008319" +"2008320" +"2008322" +"2008336" +"2008344" +"2008348" +"2008350" +"2008355" +"2008358" +"2008359" +"2008361" +"2008362" +"2008363" +"2008364" +"2008365" +"2008376" +"2008377" +"2008378" +"2008379" +"2008380" +"2008381" +"2008385" +"2008386" +"2008389" +"2008390" +"2008391" +"2008392" +"2008397" +"2008398" +"2008399" +"2008401" +"2008403" +"2008406" +"2008407" +"2008410" +"2008411" +"2008414" +"2008419" +"2008420" +"2008422" +"2008423" +"2008425" +"2008427" +"2008428" +"2008429" +"2008432" +"2008433" +"2008435" +"2008436" +"2008437" +"2008438" +"2008439" +"2008440" +"2008441" +"2008444" +"2008446" +"2008447" +"2008448" +"2008449" +"2008450" +"2008451" +"2008452" +"2008455" +"2008456" +"2008457" +"2008458" +"2008459" +"2008461" +"2008462" +"2008463" +"2008465" +"2008466" +"2008467" +"2008469" +"2008471" +"2008473" +"2008474" +"2008476" +"2008478" +"2008479" +"2008480" +"2008481" +"2008482" +"2008484" +"2008486" +"2008500" +"2008502" +"2008503" +"2008504" +"2008516" +"2008525" +"2008527" +"2008528" +"2008529" +"2008535" +"2008539" +"2008551" +"2008552" +"2008553" +"2008556" +"2008566" +"2008567" +"2008571" +"2008574" +"2008578" +"2008580" +"2008581" +"2008584" +"2008592" +"2008593" +"2008595" +"2008597" +"2008599" +"2008610" +"2008613" +"2008614" +"2008616" +"2008617" +"2008620" +"2008621" +"2008623" +"2008624" +"2008626" +"2008627" +"2008629" +"2008632" +"2008633" +"2008636" +"2008638" +"2008639" +"2008641" +"2008644" +"2008649" +"2008651" +"2008654" +"2008658" +"2008660" +"2008661" +"2008662" +"2008663" +"2008669" +"2008670" +"2008671" +"2008677" +"2008679" +"2008680" +"2008683" +"2008684" +"2008687" +"2008688" +"2008689" +"2008692" +"2008705" +"2008706" +"2008707" +"2008709" +"2008710" +"2008711" +"2008720" +"2008721" +"2008724" +"2008725" +"2008727" +"2008729" +"2008732" +"2008734" +"2008735" +"2008736" +"2008737" +"2008738" +"2008739" +"2008741" +"2008742" +"2008744" +"2008745" +"2008747" +"2008748" +"2008749" +"2008750" +"2008751" +"2008752" +"2008753" +"2008754" +"2008764" +"2008765" +"2008766" +"2008767" +"2008768" +"2008769" +"2008770" +"2008772" +"2008775" +"2008776" +"2008778" +"2008780" +"2008781" +"2008782" +"2008783" +"2008784" +"2008788" +"2008789" +"2008792" +"2008795" +"2008798" +"2008799" +"2008800" +"2008801" +"2008803" +"2008806" +"2008809" +"2008810" +"2008812" +"2008813" +"2008823" +"2008824" +"2008825" +"2008826" +"2008827" +"2008828" +"2008830" +"2008835" +"2008836" +"2008837" +"2008838" +"2008839" +"2008840" +"2008843" +"2008845" +"2008847" +"2008848" +"2008855" +"2008863" +"2008864" +"2008865" +"2008869" +"2008870" +"2008871" +"2008876" +"2008880" +"2008887" +"2008888" +"2008889" +"2008890" +"2008893" +"2008894" +"2008896" +"2008898" +"2008899" +"2008902" +"2008903" +"2008904" +"2008910" +"2008911" +"2008916" +"2008917" +"2008918" +"2008919" +"2008922" +"2008932" +"2008935" +"2008938" +"2008939" +"2008940" +"2008942" +"2008947" +"2008949" +"2008955" +"2008956" +"2008958" +"2008962" +"2008963" +"2008965" +"2008973" +"2008974" +"2008975" +"2008978" +"2008984" +"2008985" +"2008986" +"2008988" +"2008989" +"2008992" +"2008998" +"2009002" +"2009003" +"2009004" +"2009020" +"2009021" +"2009023" +"2009025" +"2009026" +"2009043" +"2009044" +"2009045" +"2009048" +"2009049" +"2009050" +"2009051" +"2009053" +"2009055" +"2009057" +"2009065" +"2009067" +"2009069" +"2009072" +"2009082" +"2009083" +"2009084" +"2009085" +"2009087" +"2009088" +"2009089" +"2009090" +"2009095" +"2009104" +"2009105" +"2009108" +"2009110" +"2009111" +"2009112" +"2009113" +"2009114" +"2009118" +"2009120" +"2009121" +"2009123" +"2009134" +"2009136" +"2009137" +"2009140" +"2009141" +"2009146" +"2009147" +"2009154" +"2009157" +"2009158" +"2009163" +"2009165" +"2009166" +"2009167" +"2009171" +"2009172" +"2009173" +"2009196" +"2009197" +"2009199" +"2009205" +"2009206" +"2009207" +"2009208" +"2009209" +"2009210" +"2009212" +"2009213" +"2009216" +"2009217" +"2009219" +"2009220" +"2009221" +"2009222" +"2009223" +"2009228" +"2009230" +"2009231" +"2009234" +"2009235" +"2009237" +"2009243" +"2009245" +"2009246" +"2009247" +"2009249" +"2009255" +"2009266" +"2009269" +"2009271" +"2009273" +"2009274" +"2009275" +"2009276" +"2009277" +"2009292" +"2009300" +"2009301" +"2009303" +"2009305" +"2009306" +"2009310" +"2009311" +"2009313" +"2009314" +"2009315" +"2009342" +"2009348" +"2009356" +"2009357" +"2009364" +"2009365" +"2009374" +"2009378" +"2009379" +"2009380" +"2009403" +"2009404" +"2009405" +"2009414" +"2009415" +"2009416" +"2009417" +"2009418" +"2009424" +"2009425" +"2009428" +"2009452" +"2009457" +"2009458" +"2009461" +"2009463" +"2009464" +"2009465" +"2009467" +"2009468" +"2009470" +"2009471" +"2009472" +"2009476" +"2009477" +"2009478" +"2009486" +"2009487" +"2009503" +"2009517" +"2009521" +"2009522" +"2009523" +"2009526" +"2009532" +"2009533" +"2009536" +"2009537" +"2009539" +"2009541" +"2009542" +"2009544" +"2009549" +"2009550" +"2009567" +"2009572" +"2009573" +"2009574" +"2009576" +"2009577" +"2009587" +"2009588" +"2009605" +"2009606" +"2009609" +"2009617" +"2009668" +"2009686" +"2009688" +"2009698" +"2009701" +"2009702" +"2009703" +"2009705" +"2009721" +"2009739" +"2009741" +"2009743" +"2009754" +"2009771" +"2009788" +"2009795" +"2009799" +"2009800" +"2009816" +"2009818" +"2009819" +"2009820" +"2009834" +"2009835" +"2009836" +"2009846" +"2009865" +"2009867" +"2009905" +"2009906" +"2009932" +"2009934" +"2009940" +"2009944" +"2009945" +"2009946" +"2009947" +"2009948" +"2009992" +"2010005" +"2010006" +"2010007" +"2010008" +"2010009" +"2010010" +"2010011" +"2010013" +"2010014" +"2010015" +"2010016" +"2010017" +"2010018" +"2010019" +"2010020" +"2010045" +"2010046" +"2010047" +"2010057" +"2010088" +"2010089" +"2010090" +"2010110" +"2010111" +"2010112" +"2010117" +"2010120" +"2010180" +"2010188" +"2010201" +"2010210" +"2010213" +"2010216" +"2010219" +"2010234" +"2010235" +"2010236" +"2010237" +"2010245" +"2010262" +"2010263" +"2010270" +"2010272" +"2010292" +"2010295" +"2010304" +"2010314" +"2010328" +"2010329" +"2010330" +"2010334" +"2010335" +"2010340" +"2010353" +"2010354" +"2010355" +"2010363" +"2010364" +"2010365" +"2010396" +"2010397" +"2010398" +"2010400" +"2010401" +"2010402" +"2010404" +"2010405" +"2010433" +"2010442" +"2010448" +"2010466" +"2010521" +"2010543" +"2010544" +"2010546" +"2010548" +"2010549" +"2010550" +"2010559" +"2010560" +"2010561" +"2010568" +"2010618" +"2010622" +"2010629" +"2010674" +"2010676" +"2010677" +"2010696" +"2010705" +"2010718" +"2010719" +"2010723" +"2010725" +"2010732" +"2010754" +"2010755" +"2010786" +"2010788" +"2010789" +"2010792" +"2010815" +"2010820" +"2010821" +"2010822" +"2010833" +"2010846" +"2010854" +"2010855" +"2010878" +"2010881" +"2010903" +"2010904" +"2010906" +"2010919" +"2010929" +"2010939" +"2010940" +"2010974" +"2010985" +"2011003" +"2011006" +"2011009" +"2011020" +"2011021" +"2011125" +"2011129" +"2011131" +"2011133" +"2011136" +"2011137" +"2011156" +"2011157" +"2011158" +"2011159" +"2011160" +"2011161" +"2011162" +"2011163" +"2011200" +"2011220" +"2011299" +"2011325" +"2011326" +"2011331" +"2011333" +"2011339" +"2011410" +"2011411" +"2011412" +"2011422" +"2011423" +"2011424" +"2011425" +"2011426" +"2011455" +"2011458" +"2011459" +"2011570" +"2011580" +"2011581" +"2011588" +"2011589" +"2011598" +"2011605" +"2011606" +"2011607" +"2011608" +"2011609" +"2011621" +"2011640" +"2011677" +"2011708" +"2011709" +"2011713" +"2011725" +"2011742" +"2011796" +"2011797" +"2011798" +"2011806" +"2011810" +"2011816" +"2011818" +"2011820" +"2011822" +"2011860" +"2011865" +"2011877" +"2011878" +"2011895" +"2011896" +"2011897" +"2011913" +"2011923" +"2011925" +"2011926" +"2011944" +"2011945" +"2011982" +"2011983" +"2012011" +"2012026" +"2012030" +"2012032" +"2012033" +"2012045" +"2012100" +"2012103" +"2012143" +"2012155" +"2012156" +"2012157" +"2012163" +"2012166" +"2012184" +"2012187" +"2012188" +"2012189" +"2012223" +"2012226" +"2012228" +"2012229" +"2012249" +"2012250" +"2012267" +"2012290" +"2012291" +"2012292" +"2012293" +"2012294" +"2012295" +"2012296" +"2012297" +"2012298" +"2012299" +"2012300" +"2012309" +"2012310" +"2012348" +"2012349" +"2012373" +"2012374" +"2012375" +"2012376" +"2012377" +"2012378" +"2012380" +"2012382" +"2012408" +"2012437" +"2012446" +"2012448" +"2012449" +"2012451" +"2012461" +"2012524" +"2012530" +"2012537" +"2012539" +"2012540" +"2012541" +"2012585" +"2012587" +"2012588" +"2012598" +"2012599" +"2012600" +"2012601" +"2012602" +"2012608" +"2012609" +"2012611" +"2012637" +"2012638" +"2012640" +"2012641" +"2012643" +"2012647" +"2012648" +"2012665" +"2012666" +"2012672" +"2012673" +"2012676" +"2013052" +"2013164" +"2013188" +"2013252" +"2013254" +"2013267" +"2013306" +"2013308" +"2013311" +"2013316" +"2013319" +"2013322" +"2013328" +"2013329" +"2013331" +"2013332" +"2013339" +"2013340" +"2013342" +"2013344" +"2013345" +"2013346" +"2013347" +"2013350" +"2013351" +"2013364" +"2013365" +"2013366" +"2013373" +"2013375" +"2013377" +"2013381" +"2013382" +"2013388" +"2013389" +"2013390" +"2013406" +"2013410" +"2013411" +"2013415" +"2013416" +"2013418" +"2013432" +"2013440" +"2013441" +"2013442" +"2013443" +"2013444" +"2013445" +"2013447" +"2013448" +"2013449" +"2013450" +"2013451" +"2013457" +"2013461" +"2013462" +"2013464" +"2013465" +"2013466" +"2013505" +"2013506" +"2013508" +"2013510" +"2013511" +"2013512" +"2013513" +"2013514" +"2013517" +"2013518" +"2013522" +"2013524" +"2013526" +"2013527" +"2013528" +"2013529" +"2013530" +"2013531" +"2013532" +"2013533" +"2013534" +"2013535" +"2013536" +"2013537" +"2013538" +"2013539" +"2013541" +"2013542" +"2013543" +"2013544" +"2013547" +"2013548" +"2013549" +"2013550" +"2013551" +"2013552" +"2013553" +"2013554" +"2013555" +"2013556" +"2013557" +"2013559" +"2013561" +"2013563" +"2013567" +"2013568" +"2013569" +"2013570" +"2013572" +"2013573" +"2013574" +"2013575" +"2013576" +"2013577" +"2013579" +"2013581" +"2013582" +"2013584" +"2013585" +"2013586" +"2013587" +"2013588" +"2013594" +"2013596" +"2013597" +"2013606" +"2013607" +"2013608" +"2013610" +"2013612" +"2013613" +"2013614" +"2013615" +"2013616" +"2013622" +"2013623" +"2013624" +"2013625" +"2013626" +"2013627" +"2013628" +"2013629" +"2013630" +"2013631" +"2013633" +"2013635" +"2013637" +"2013638" +"2013639" +"2013640" +"2013641" +"2013642" +"2013643" +"2013644" +"2013645" +"2013653" +"2013654" +"2013656" +"2013657" +"2013658" +"2013664" +"2013665" +"2013668" +"2013669" +"2013670" +"2013671" +"2013672" +"2013673" +"2013674" +"2013675" +"2013676" +"2013677" +"2013678" +"2013679" +"2013680" +"2013683" +"2013684" +"2013685" +"2013686" +"2013688" +"2013690" +"2013692" +"2013693" +"2013694" +"2013695" +"2013699" +"2013701" +"2013705" +"2013706" +"2013708" +"2013711" +"2013712" +"2013713" +"2013714" +"2013715" +"2013719" +"2013720" +"2013721" +"2013722" +"2013724" +"2013725" +"2013730" +"2013731" +"2013734" +"2013746" +"2013747" +"2013748" +"2013749" +"2013750" +"2013751" +"2013752" +"2013753" +"2013754" +"2013755" +"2013756" +"2013760" +"2013762" +"2013774" +"2013779" +"2013780" +"2013781" +"2013782" +"2013784" +"2013789" +"2013791" +"2013795" +"2013797" +"2013798" +"2013800" +"2013801" +"2013803" +"2013804" +"2013805" +"2013806" +"2013807" +"2013808" +"2013809" +"2013810" +"2013811" +"2013812" +"2013813" +"2013814" +"2013817" +"2013819" +"2013820" +"2013821" +"2013822" +"2013823" +"2013824" +"2013826" +"2013827" +"2013829" +"2013830" +"2013831" +"2013833" +"2013836" +"2013837" +"2013838" +"2013840" +"2013841" +"2013842" +"2013843" +"2013845" +"2013847" +"2013848" +"2013850" +"2013851" +"2013852" +"2013853" +"2013854" +"2013855" +"2013856" +"2013858" +"2013859" +"2013860" +"2013861" +"2013862" +"2013863" +"2013864" +"2013866" +"2013868" +"2013870" +"2013873" +"2013874" +"2013875" +"2013879" +"2013880" +"2013881" +"2013882" +"2013884" +"2013886" +"2013887" +"2013888" +"2013890" +"2013891" +"2013892" +"2013893" +"2013895" +"2013896" +"2013905" +"2013906" +"2013907" +"2013909" +"2013913" +"2013914" +"2013915" +"2013916" +"2013918" +"2013920" +"2013927" +"2013928" +"2013929" +"2013931" +"2013932" +"2013934" +"2013935" +"2013937" +"2013938" +"2013943" +"2013944" +"2013946" +"2013947" +"2013948" +"2013949" +"2013950" +"2013952" +"2013953" +"2013954" +"2013955" +"2013956" +"2013957" +"2013958" +"2013959" +"2013960" +"2013962" +"2013965" +"2013966" +"2013967" +"2013969" +"2013970" +"2013974" +"2013975" +"2013977" +"2013982" +"2013983" +"2013986" +"2013994" +"2013995" +"2013996" +"2013997" +"2013998" +"2013999" +"2014000" +"2014001" +"2014002" +"2014003" +"2014004" +"2014005" +"2014007" +"2014013" +"2014014" +"2014015" +"2014016" +"2014017" +"2014018" +"2014019" +"2014021" +"2014022" +"2014023" +"2014024" +"2014025" +"2014026" +"2014027" +"2014028" +"2014030" +"2014031" +"2014032" +"2014033" +"2014034" +"2014035" +"2014036" +"2014037" +"2014041" +"2014042" +"2014043" +"2014044" +"2014045" +"2014046" +"2014047" +"2014048" +"2014049" +"2014050" +"2014051" +"2014052" +"2014054" +"2014055" +"2014057" +"2014058" +"2014059" +"2014060" +"2014080" +"2014081" +"2014082" +"2014083" +"2014084" +"2014085" +"2014086" +"2014087" +"2014088" +"2014091" +"2014092" +"2014103" +"2014105" +"2014106" +"2014107" +"2014116" +"2014117" +"2014118" +"2014119" +"2014120" +"2014121" +"2014122" +"2014124" +"2014125" +"2014126" +"2014128" +"2014129" +"2014130" +"2014131" +"2014132" +"2014134" +"2014135" +"2014136" +"2014137" +"2014138" +"2014139" +"2014142" +"2014143" +"2014144" +"2014145" +"2014147" +"2014148" +"2014150" +"2014151" +"2014152" +"2014155" +"2014156" +"2014157" +"2014158" +"2014160" +"2014161" +"2014162" +"2014163" +"2014168" +"2014170" +"2014173" +"2014175" +"2014176" +"2014177" +"2014178" +"2014180" +"2014182" +"2014183" +"2014184" +"2014185" +"2014187" +"2014188" +"2014189" +"2014190" +"2014191" +"2014192" +"2014193" +"2014194" +"2014196" +"2014197" +"2014198" +"2014199" +"2014201" +"2014202" +"2014204" +"2014205" +"2014206" +"2014207" +"2014209" +"2014210" +"2014211" +"2014212" +"2014213" +"2014214" +"2014219" +"2014220" +"2014222" +"2014226" +"2014227" +"2014228" +"2014229" +"2014230" +"2014231" +"2014233" +"2014235" +"2014238" +"2014239" +"2014240" +"2014241" +"2014242" +"2014243" +"2014244" +"2014245" +"2014255" +"2014256" +"2014257" +"2014258" +"2014259" +"2014261" +"2014262" +"2014263" +"2014264" +"2014265" +"2014266" +"2014267" +"2014268" +"2014270" +"2014271" +"2014273" +"2014274" +"2014275" +"2014276" +"2014278" +"2014279" +"2014280" +"2014281" +"2014282" +"2014283" +"2014286" +"2014287" +"2014288" +"2014289" +"2014290" +"2014291" +"2014292" +"2014293" +"2014294" +"2014296" +"2014297" +"2014298" +"2014299" +"2014300" +"2014303" +"2014305" +"2014309" +"2014311" +"2014318" +"2014319" +"2014326" +"2014330" +"2014333" +"2014334" +"2014335" +"2014336" +"2014337" +"2014338" +"2014341" +"2014343" +"2014346" +"2014347" +"2014348" +"2014351" +"2014352" +"2014353" +"2014355" +"2014359" +"2014366" +"2014453" +"2014454" +"2014456" +"2014458" +"2014460" +"2014466" +"2014477" +"2014478" +"2014480" +"2014481" +"2014488" +"2014490" +"2014494" +"2014500" +"2014502" +"2014503" +"2014504" +"2014505" +"2014506" +"2014507" +"2014508" +"2014509" +"2014511" +"2014520" +"2014521" +"2014523" +"2014524" +"2014527" +"2014528" +"2014530" +"2014531" +"2014532" +"2014538" +"2014542" +"2014543" +"2014548" +"2014549" +"2014550" +"2014551" +"2014552" +"2014555" +"2014559" +"2014564" +"2014566" +"2014567" +"2014574" +"2014603" +"2014612" +"2014627" +"2014629" +"2014631" +"2014632" +"2014633" +"2014634" +"2705000" +"2705004" +"2705006" +"2705007" +"2705008" +"2705010" +"2705011" +"2705012" +"2705015" +"2705016" +"2705018" +"2705022" +"2705039" +"2705042" +"2705044" +"2705045" +"2705047" +"2705048" +"2705049" +"2705050" +"2705052" +"2705053" +"2705054" +"2705055" +"2705056" +"2705057" +"2705058" +"2705059" +"2705060" +"2705061" +"2705065" +"2705066" +"2705068" +"2705070" +"2705074" +"2705075" +"2705076" +"2705077" +"2705078" +"2705079" +"2705080" +"2705082" +"2705084" +"2705085" +"2705086" +"2705087" +"2705088" +"2705089" +"2705090" +"2705091" +"2705092" +"2705093" +"2705094" +"2705095" +"2705096" +"2705097" +"2705098" +"2705099" +"2705100" +"2705101" +"2705102" +"2705103" +"2705104" +"2705105" +"2705106" +"2705107" +"2705108" +"2705109" +"2705110" +"2705111" +"2705112" +"2705113" +"2705114" +"2705115" +"2705116" +"2705117" +"2705118" +"2705120" +"2705122" +"2705124" +"2705126" +"2705128" +"2705129" +"2705130" +"2705131" +"2705132" +"2705133" +"2705134" +"2705135" +"2705136" +"2705137" +"2705138" +"2705139" +"2705140" +"2705141" +"2705143" +"2705147" +"2705148" +"2705149" +"2705150" +"2705151" +"2705152" +"2705154" +"2705156" +"2705157" +"2705158" +"2705159" +"2705160" +"2705161" +"2705162" +"2705164" +"2705165" +"2705166" +"2705167" +"2705168" +"2705169" +"2705170" +"2705172" +"2705173" +"2705174" +"2705176" +"2705178" +"2705180" +"2705181" +"2705182" +"2705184" +"2705185" +"2705186" +"2705188" +"2705190" +"2705192" +"2705193" +"2705194" +"2705195" +"2705196" +"2705197" +"2705198" +"2705199" +"2705200" +"2705201" +"2705202" +"2705203" +"2705204" +"2705205" +"2705206" +"2705207" +"2705208" +"2705209" +"2705210" +"2705213" +"2705215" +"2705217" +"2705218" +"2705222" +"2705223" +"2705224" +"2705225" +"2705227" +"2705228" +"2705229" +"2705230" +"2705231" +"2705232" +"2705233" +"2705234" +"2705238" +"2705239" +"2705240" +"2705241" +"2705242" +"2705243" +"2705244" +"2705245" +"2705247" +"2705248" +"2705249" +"2705250" +"2705251" +"2705253" +"2705254" +"2705256" +"2705257" +"2705258" +"2705259" +"2705282" +"2705283" +"2705284" +"2705285" +"2705287" +"2705289" +"2705290" +"2705291" +"2705292" +"2705293" +"2705306" +"2705307" +"2705308" +"2705309" +"2705311" +"2705312" +"2705313" +"2705317" +"2705318" +"2705319" +"2705320" +"2705321" +"2705327" +"2705328" +"2705329" +"2705330" +"2705332" +"2705334" +"2705336" +"2705337" +"2705340" +"2705342" +"2705343" +"2705344" +"2705348" +"2705350" +"2705351" +"2705353" +"2705354" +"2705355" +"2705356" +"2705357" +"2705359" +"2705360" +"2705361" +"2705362" +"2705364" +"2705365" +"2705366" +"2705367" +"2705368" +"2705369" +"2705370" +"2705371" +"2705374" +"2705375" +"2705377" +"2705378" +"2705379" +"2705380" +"2705382" +"2705383" +"2705385" +"2705386" +"2705392" +"2705393" +"2705394" +"2705395" +"2705396" +"2705398" +"2705399" +"2705400" +"2705402" +"2705406" +"2705407" +"2705409" +"2705410" +"2705413" +"2705414" +"2705415" +"2705416" +"2705417" +"2705418" +"2705420" +"2705422" +"2705426" +"2705427" +"2705430" +"2705431" +"2705432" +"2705433" +"2705435" +"2705436" +"2705438" +"2705440" +"2705441" +"2705442" +"2705443" +"2705444" +"2705445" +"2705447" +"2705449" +"2705451" +"2705452" +"2705453" +"2705458" +"2705459" +"2705460" +"2705462" +"2705463" +"2705464" +"2705465" +"2705467" +"2705468" +"2705469" +"2705470" +"2705471" +"2705472" +"2705473" +"2705474" +"2705475" +"2705476" +"2705478" +"2705480" +"2705481" +"2705482" +"2705484" +"2705485" +"2705486" +"2705487" +"2705488" +"2705489" +"2705490" +"2705491" +"2705492" +"2705495" +"2705496" +"2705497" +"2705498" +"2705499" +"2705500" +"2705501" +"2705502" +"2705503" +"2705504" +"2705505" +"2705506" +"2705507" +"2705508" +"2705509" +"2705513" +"2705516" +"2705517" +"2705519" +"2705520" +"2705522" +"2705525" +"2705526" +"2705527" +"2705528" +"2705529" +"2705530" +"2705531" +"2705532" +"2705533" +"2705534" +"2705536" +"2705537" +"2705539" +"2705540" +"2705542" +"2705543" +"2705545" +"2705546" +"2705547" +"2705548" +"2705558" +"2705559" +"2705565" +"2705566" +"2705567" +"2705568" +"2705569" +"2705570" +"2705571" +"2705572" +"2705573" +"2705574" +"2705575" +"2705577" +"2705578" +"2705579" +"2705584" +"2705590" +"2705593" +"2705645" +"2705651" +"2705659" +"2705669" +"2705670" +"2705672" +"2705681" +"2705709" +"2705711" +"2705712" +"2705716" +"2705717" +"2705719" +"2705733" +"2705734" +"2705741" +"2705743" +"2705744" +"2705745" +"2705747" +"2705754" +"2705755" +"2705756" +"2705761" +"2705788" +"2705797" +"2705799" +"2705805" +"2705848" +"2705873" +"2705907" +"2705908" +"2705932" +"2706008" +"2706009" +"2706014" +"2706016" +"2706017" +"2706025" +"2706042" +"2706066" +"2706114" +"2706116" +"2706118" +"2706127" +"2706128" +"2706133" +"2706134" +"2706135" +"2706136" +"2706141" +"2706142" +"2706143" +"2706144" +"2706145" +"2706146" +"2706147" +"2706150" +"2706151" +"2706152" +"2706154" +"2706155" +"2706156" +"2706157" +"2706159" +"2706160" +"2706164" +"2706165" +"2706166" +"2706167" +"2706168" +"2706169" +"2706170" +"2706171" +"2706172" +"2706173" +"2706175" +"2706177" +"2706178" +"2706179" +"2706184" +"2706185" +"2706186" +"2706187" +"2706188" +"2706189" +"2706190" +"2706192" +"2706193" +"2706194" +"2706195" +"2706196" +"2706197" +"2706198" +"2706199" +"2706200" +"2706201" +"2706202" +"2706203" +"2706204" +"2706206" +"2706207" +"2706208" +"2706212" +"2706213" +"2706214" +"2706216" +"2706217" +"2706218" +"2706222" +"2706223" +"2706224" +"2706225" +"2706226" +"2706227" +"2706228" +"2706229" +"2706232" +"2706233" +"2706234" +"2706235" +"2706236" +"2706237" +"2706239" +"2706240" +"2706241" +"2706244" +"2706246" +"2706248" +"2706249" +"2706250" +"2706251" +"2706253" +"2706255" +"2706256" +"2706257" +"2706258" +"2706259" +"2706260" +"2706261" +"2706262" +"2706263" +"2706264" +"2706265" +"2706266" +"2706267" +"2706268" +"2706269" +"2706270" +"2706271" +"2706272" +"2706273" +"2706276" +"2706277" +"2706279" +"2706280" +"2706281" +"2706282" +"2706284" +"2706285" +"2706286" +"2706287" +"2706288" +"2706289" +"2706290" +"2706296" +"2706297" +"2706298" +"2706322" +"2706324" +"2706325" +"2706331" +"2706332" +"2706339" +"2706342" +"2706345" +"2706350" +"2706351" diff --git a/Data/SBD_Data/StructureList_SBD1.csv b/Data/SBD_Data/StructureList_SBD1.csv new file mode 100644 index 0000000..ea1fe8a --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD1.csv @@ -0,0 +1,2819 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2005007","W1003 WELL NO 02","NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1003","6456-R","04062000/04062034","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","11","40.0 N","8.0 E","N","","","","","406065.0","4175973.0","37.726217","-106.065951","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005007", +"2005018","W1136 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0010, W1136","10816-R, 10816-R-R","01-03522-6","JONES, MICHAEL & SARAH; JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","6","40.0 N","10.0 E","N","60","W","2520","S","418269.2","4177565.8","37.741744","-105.927661","08/14/2003 11:29","https://dwr.state.co.us/Tools/Structures/2005018", +"2005022","W1188 WELL NO 02","49-W. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1188","3309-F, 90390-F","08061975/08062017","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","32","41.0 N","8.0 E","N","","","","","401208.0","4179695.0","37.759247","-106.121563","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005022", +"2005033","W1335 WELL NO 01","EAST PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","02CW0019, 03CW0013, W1335","15577-R, 88964-F","03-8-2958","HUNTZICKER, JOSEPH D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","27","39.0 N","9.0 E","N","","","","","413096.0","4160923.0","37.591280","-105.984384","09/26/2007 08:29","https://dwr.state.co.us/Tools/Structures/2005033", +"2005035","W1353 WELL NO 01","#17N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1353","16064-R","08223542, 09061926/10061036","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COONEY PROPERTIES 108 LLC (COONEY, TIMOTHY J.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","1","40.0 N","9.0 E","N","","","","","417439.0","4177379.0","37.739985","-105.937059","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005035", +"2005037","W1370 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1370","10215-R, 5413-F","03061798/03061828","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","1","39.0 N","8.0 E","N","","","","","407548.0","4167577.0","37.650705","-106.048060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005037", +"2005038","W1371 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1371","11402-R","05060246/05060259","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","35","41.0 N","7.0 E","N","","","","","396357.0","4179327.0","37.755394","-106.176572","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005038", +"2005041","W0140 WELL NO PUMP 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0140","6783-R","03063663/03063699","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","7","40.0 N","9.0 E","N","","","","","408501.0","4176305.0","37.729456","-106.038354","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005041", +"2005046","W1475 WELL NO 02","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1475","6089-R","03062353/12212609","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","35","40.0 N","8.0 E","N","","","","","405953.0","4168904.0","37.662501","-106.066309","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005046", +"2005049","W1479 WELL NO IRR 02","6 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1479","6040-R-R","01061407/01061429","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","35","40.0 N","8.0 E","N","","","","","405954.0","4169602.0","37.668792","-106.066388","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005049", +"2005050","W0148 WELL NO PUMP 01","10 X 4E NE-LYNNS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0148","1272-R-R","05060761/05060788","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","11","40.0 N","8.0 E","N","","","","","405255.0","4175469.0","37.721592","-106.075075","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005050", +"2005052","W0148 WELL NO PUMP 02A","LYNNS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0148","22282-F, 17720-F","05060761/05060788","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","11","40.0 N","8.0 E","N","","","","","405650.0","4175617.0","37.722967","-106.070613","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005052", +"2005053","W0148 WELL NO PUMP 04","4E X 11 SE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0148","6484-R","09061293/09061396","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","11","40.0 N","8.0 E","N","","","","","405264.0","4176213.0","37.728298","-106.075070","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005053", +"2005057","W0154 WELL NO 02","# 5 SUPPL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0154","17139-F","05061464/05061499","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","18","39.0 N","9.0 E","N","","","","","408319.0","4164537.0","37.623386","-106.038939","01/27/2004 09:40","https://dwr.state.co.us/Tools/Structures/2005057", +"2005058","W1545 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1545","19666-F","17-06920-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","29","39.0 N","9.0 E","N","","","","","409890.0","4161516.0","37.596316","-106.020767","01/27/2004 10:14","https://dwr.state.co.us/Tools/Structures/2005058", +"2005059","W1550 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1550","11265-R","09062739/10060110","GLADEM, DAVID G.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","2","40.0 N","7.0 E","N","","","","","397132.0","4177727.0","37.741063","-106.167549","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005059", +"2005080","W1903 WELL NO 03","SOUTH EAST HIGHLAND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W1903","10643-R","02060446/02060470","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","2","39.0 N","8.0 E","N","","","","","405143.0","4167953.0","37.653848","-106.075368","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005080", +"2005084","W0199 WELL NO 01","VERSAW#1-FLD 1 CNR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0199","11720-F","12061191/12061372-100883","VERSAW, CHARLIE J.; VERSAW, STANLEY F.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","34","41.0 N","9.0 E","N","","","","","414204.0","4179213.0","37.756215","-105.973988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005084", +"2005092","W0224 WELL NO 01","44, NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0224","6002-R","08061973/08062018","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","19","39.0 N","8.0 E","N","","","","","398598.0","4164008.0","37.617597","-106.149005","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005092", +"2005094","W2296 WELL NO 03","CORNER #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2296","12627-R, 12627-R-R","03061805/03061846","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","28","40.0 N","7.0 E","N","","","","","393026.0","4171309.0","37.682758","-106.213199","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005094", +"2005095","W0232 WELL NO 01","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0232","11478-R","23-06550-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","29","39.0 N","9.0 E","N","","","","","410718.0","4161495.0","37.596207","-106.011386","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005095", +"2005096","W2360 WELL NO 01","LITTLE PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2360","1432-R, 3883-F, 3883-F-R","05061467/05061475","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","30","41.0 N","8.0 E","N","","","","","399692.0","4180902.0","37.769959","-106.138937","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005096", +"2005103","W0248 WELL NO 02","NORTH BURNS #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","25CW0004, W0248","6862-R, 90681-F","10063594/10063694","GREG ALLEN PETERSON TRUST (PETERSON, JUDITH); PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","3","40.0 N","8.0 E","N","","","","","403660.0","4177806.0","37.742486","-106.093481","04/17/2025 14:54","https://dwr.state.co.us/Tools/Structures/2005103", +"2005104","W0248 WELL NO 03","SOUTH BURNS #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0248","6863-R","10063622/10063653","GREG ALLEN PETERSON TRUST (PETERSON, JUDITH); PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","3","40.0 N","8.0 E","N","","","","","403654.0","4177249.0","37.737466","-106.093475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005104", +"2005107","W2515 WELL NO 01","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, W2515","1984-R-R","062013004250/08223633","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","18","40.0 N","10.0 E","N","","","","","419775.0","4174060.0","37.710281","-105.910183","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005107", +"2005116","W0257 WELL NO 01","#17 OESTE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0257","135-R","07-10-1628","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","15","40.0 N","6.0 E","N","","","","","384163.0","4173880.0","37.704848","-106.314100","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005116", +"2005119","W2763 WELL NO 02","M2 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2763","14080-R","16-06010-8, 18-04566-08","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","24","40.0 N","7.0 E","N","","","","","397128.0","4172873.0","37.697321","-106.166908","02/06/2026 12:13","https://dwr.state.co.us/Tools/Structures/2005119", +"2005120","W0279 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0010, W0279","6448-R, 87728-F","10063576/10063690","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","11","39.0 N","7.0 E","N","","","","","395777.0","4166155.0","37.636629","-106.181270","07/27/2009 13:20","https://dwr.state.co.us/Tools/Structures/2005120", +"2005121","W0297 WELL NO 04","#4 NORTH OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0297","5942-R","06-6-1931","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","NW","NW","NW","23","39.0 N","8.0 E","N","","","","","405051.0","4163933.0","37.617611","-106.075888","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005121", +"2005125","W0309 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0309","7314-R","09060710/072017003086","DIAZ, MIGUEL; FELIBERTO MARTINEZ TRUST B & CATALINA MARTINEZ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","19","39.0 N","9.0 E","N","","","","","409096.0","4162443.0","37.604592","-106.029875","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005125", +"2005127","W3219 WELL NO 01A","EAST FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3219","17434-F, 17434-F-R","04-8-3367","MILLER, H. CLAYTON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","SE","29","40.0 N","7.0 E","N","","","","","391788.0","4170947.0","37.679351","-106.227182","03/26/2007 10:05","https://dwr.state.co.us/Tools/Structures/2005127", +"2005133","W3389 WELL NO 03","BETH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3389","17438-F","07061125/07061186","KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","23","40.0 N","9.0 E","N","","","","","415358.0","4172362.0","37.694581","-105.960092","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005133", +"2005135","W3389 WELL NO 05","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0002, W3389","18623-F, 86714-F","09060216/09060265","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","29","40.0 N","9.0 E","N","","","","","410515.0","4171563.0","37.686920","-106.014919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005135", +"2005137","W0343 WELL NO 03","21 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0343","6377-F","07060386/07060927","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","15","40.0 N","8.0 E","N","","","","","404421.0","4174600.0","37.713674","-106.084423","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005137", +"2005138","W0343 WELL NO 04","22 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, 21CW0036, W0343","12214-R, 12214-R-R, 85245-F, 87735-F","11061407/07060940","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","10","40.0 N","8.0 E","N","","","","","403627.0","4175389.0","37.720701","-106.093535","02/26/2021 11:17","https://dwr.state.co.us/Tools/Structures/2005138", +"2005142","W0350 WELL NO 01","MOMS HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0050","4559-R","06-8-4224","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","19","39.0 N","9.0 E","N","","","","","408314.0","4162338.0","37.603568","-106.038720","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005142", +"2005145","W3590 WELL NO 01R","2005145 REPLACED THIS WDID, 5-SW WELL, BASSETT Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3590","670-R-R","072018810759/12061444","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SW","SW","6","40.0 N","8.0 E","N","","","","","399000.0","4176904.0","37.733855","-106.146237","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005145", +"2005155","W0408 WELL NO 02","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0408","11447-R","01061402/01061431","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","34","40.0 N","8.0 E","N","","","","","404337.0","4169536.0","37.668030","-106.084711","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005155", +"2005156","W0417 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0417","6345-R","03062357/03062383","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","26","40.0 N","8.0 E","N","","","","","405183.0","4171334.0","37.684321","-106.075354","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005156", +"2005159","W0435 WELL NO 01","26 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0435","1482-R, 5737-F","03063653/072014000395","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","4","40.0 N","8.0 E","N","","","","","402023.0","4177003.0","37.735076","-106.111949","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005159", +"2005161","W0442 WELL NO 02","PERRIN COOP SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","298-R","07-8-1050","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","33","41.0 N","8.0 E","N","","","","","402843.0","4179290.0","37.755773","-106.102950","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005161", +"2005162","W0451 WELL NO 02","FIELD 1 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","15373-F, 1895-R","05061469/052018002659","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","6","39.0 N","9.0 E","N","","","","","408776.0","4168334.0","37.657650","-106.034236","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005162", +"2005163","W0451 WELL NO 06","FIELD 2 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","15374-F","05061440/05061481","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","6","39.0 N","9.0 E","N","","","","","409569.0","4168344.0","37.657818","-106.025248","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005163", +"2005171","W0501 WELL NO 04","QTR. 24 PIVOT RISER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0501","9477-F","","KRUSE, BARBARA; KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SE","24","39.0 N","9.0 E","N","","","","","417621.0","4162651.0","37.607269","-105.933330","10/24/2008 14:31","https://dwr.state.co.us/Tools/Structures/2005171", +"2005172","W0238 WELL NO 04","FIELD #2 - EAST HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0512","6319-R","09062772/10060097","PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","4","39.0 N","8.0 E","N","","","","","403089.0","4167670.0","37.651083","-106.098612","11/14/2008 10:16","https://dwr.state.co.us/Tools/Structures/2005172", +"2005176","W0520 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0520","1817-R-R","03063666","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","3","39.0 N","8.0 E","N","","","","","404322.0","4168389.0","37.657692","-106.084731","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005176", +"2005177","W0527 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0527","12261-R","12062554/052013003806","PETERSON, MARK T. & MICHELLE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","15","40.0 N","8.0 E","N","","","","","403613.0","4174564.0","37.713265","-106.093584","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005177", +"2005178","W0528 WELL NO 01","23 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, W0528","12165-R","07060387/07060934","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","9","40.0 N","8.0 E","N","","","","","402808.0","4175415.0","37.720849","-106.102830","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005178", +"2005181","W0542 WELL NO 01","B1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0542","1201-R, 3256-F","100925/052013003808","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","31","41.0 N","8.0 E","N","","","","","398792.0","4178538.0","37.748557","-106.148825","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005181", +"2005186","W0561 WELL NO 01","CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0562","14709-R","09060211/09060240","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","30","41.0 N","9.0 E","N","","","","","408575.0","4180998.0","37.771756","-106.038105","12/30/2008 15:21","https://dwr.state.co.us/Tools/Structures/2005186", +"2005193","W0635 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0635","1558-R","10063551/10063726","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","39.0 N","8.0 E","N","","","","","406668.0","4163740.0","37.616037","-106.057544","06/14/2019 10:27","https://dwr.state.co.us/Tools/Structures/2005193", +"2005197","W0675 WELL NO 07A","8 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","18585-F","GP12-3312-8","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","22","40.0 N","7.0 E","N","","","","","395066.0","4172505.0","37.693771","-106.190240","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005197", +"2005202","W0740 WELL NO 01","SD-W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0740","13854-R","23-02633-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; ROCKWATER LLC (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","4","39.0 N","7.0 E","N","","","","","392190.0","4167960.0","37.652481","-106.222183","08/14/2013 15:26","https://dwr.state.co.us/Tools/Structures/2005202", +"2005205","W0811 WELL NO 01","#15 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0811","1298-R","11061540/11061577","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","17","39.0 N","9.0 E","N","","","","","409951.0","4165474.0","37.631991","-106.020564","02/03/2009 15:55","https://dwr.state.co.us/Tools/Structures/2005205", +"2005206","W0818 WELL NO 04","FIELD B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","3068-F","10062697/10062870","HOLLAND, GLEN & MARTHA; HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","23","40.0 N","8.0 E","N","","","","","406002.0","4172387.0","37.693895","-106.066203","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005206", +"2005207","W0822 WELL NO 01","15 SIDE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0822","160-R-R, 160-R-R","06-8-2828, 06-8-4237","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","19","40.0 N","8.0 E","N","","","","","398733.0","4172694.0","37.695887","-106.148681","02/15/2013 14:00","https://dwr.state.co.us/Tools/Structures/2005207", +"2005211","W0841 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0841","230-R, 15513-F","05060771/05060797","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","39.0 N","8.0 E","N","","","","","404317.0","4167922.0","37.653483","-106.084726","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005211", +"2005212","W0841 WELL NO 06","USHER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0841","15514-F, 232-R","10060656/09061404","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","31","40.0 N","9.0 E","N","","","","","408391.0","4169758.0","37.670444","-106.038779","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005212", +"2005214","21CW0002 WELL NO. 5S","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0002","85868-F, 88185-F","09060216/09060265","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","40.0 N","9.0 E","N","","","","","410268.0","4171194.0","37.683571","-106.017675","11/05/2025 13:27","https://dwr.state.co.us/Tools/Structures/2005214", +"2005316","W0894 WELL NO 01","112 FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0894","635-R","06123280/112018000048","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","36","41.0 N","7.0 E","N","","","","","397160.0","4178543.0","37.748420","-106.167347","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005316", +"2005322","W3334 WELL NO 02A","FAR WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3334","20809-F","20-01839-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","30","41.0 N","7.0 E","N","","","","","390352.0","4180641.0","37.766535","-106.244925","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005322", +"2005324","W3416 WELL NO 02","EAST HOME PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3416","17625-F, 17625-F-R","12062626/12062712","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","35","40.0 N","7.0 E","N","","","","","396644.0","4169257.0","37.664681","-106.171884","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005324", +"2005325","W3744 WELL NO 02R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0033, W3744","6076-R","20-03587-08","CARPENTER, CODY; CARPENTER, CODY & ALIESHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","19","40.0 N","9.0 E","N","","","","","408444.0","4173050.0","37.700117","-106.038591","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005325", +"2005334","W0969 WELL NO PUMP 06","FASSET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0969","880-R-R","10242147/07242529","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","10","40.0 N","8.0 E","N","","","","","404462.0","4176011.0","37.726394","-106.084143","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005334", +"2005337","W0969 WELL NO PUMP 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0969","363-R, 363-R-R","05060775/05060781","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","6","40.0 N","9.0 E","N","45","W","760","S","408510.1","4177012.7","37.735837","-106.038341","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005337", +"2005339","W0969 WELL NO PUMP 10A","BILL'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0969","22283-F, 18980-F","05060775/05060781","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","6","40.0 N","9.0 E","N","","","","","408915.0","4177201.0","37.737572","-106.033769","11/02/2007 16:02","https://dwr.state.co.us/Tools/Structures/2005339", +"2005340","W3485 WELL NO 07","6 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3485","18680-F, 18680-F-R","01061407/01061429","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","35","40.0 N","8.0 E","N","","","","","406362.0","4169960.0","37.672060","-106.061808","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005340", +"2005344","W0888 WELL NO 07","WAREHOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0888, W3391","1806-R, 36254-F","6802849","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","21","40.0 N","7.0 E","N","","","","","392250.0","4172149.0","37.690237","-106.222122","01/17/2024 12:40","https://dwr.state.co.us/Tools/Structures/2005344", +"2005383","79CW012 WELL NO 03&04A","#23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, 23CW0016, 79CW0012","22877-F, 89775-F","11061710/052018001069","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","9","39.0 N","9.0 E","N","","","","","411969.0","4165901.0","37.636035","-105.997748","01/11/2001 00:00","https://dwr.state.co.us/Tools/Structures/2005383", +"2005384","79CW015 WELL NO 01RA","5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0015","21727-F","072018810759/12061444","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","6","40.0 N","8.0 E","N","","","","","399187.0","4177290.0","37.737354","-106.144169","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005384", +"2005388","W3448 WELL NO 01RR","10 S/W10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3448","11164-R-R","05060252/05060279","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","13","40.0 N","7.0 E","N","","","","","397153.0","4174521.0","37.712175","-106.166858","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005388", +"2005391","W3848 WELL NO 01A","FIELD 5 S CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3848","22544-F","05061464/05061499","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","18","39.0 N","9.0 E","N","","","","","408711.0","4164336.0","37.621613","-106.034473","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005391", +"2005398","W3847 WELL NO 01A","W 1/4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0001, 84CW0090, W3847","25360-F","94-8-1945N","SEGER, GARY V.","RGWCD SD1","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","13","40.0 N","6.0 E","N","","","","","387817.0","4174224.0","37.708403","-106.272710","02/18/2011 14:10","https://dwr.state.co.us/Tools/Structures/2005398", +"2005399","W3847 WELL NO 02A","N 1/4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0001, 84CW0090, W3847","25361-F, 25361-F-R, 86805-F","94-8-1947N","GARY V & CAROLYN JO SEGER TRUST","RGWCD SD1","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","13","40.0 N","6.0 E","N","","","","","388595.0","4174998.0","37.715473","-106.264004","02/18/2011 14:10","https://dwr.state.co.us/Tools/Structures/2005399", +"2005407","W0379 WELL NO 03","DAVENPORT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0379","6205-R, 6205-R-R","14-14745-6","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","3","40.0 N","7.0 E","N","","","","","393900.0","4177037.0","37.734477","-106.204124","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005407", +"2005409","W3156 WELL NO 01","EAST ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3156, W3484","16757-F","19-03334-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","1","39.0 N","8.0 E","N","","","","","407952.0","4168350.0","37.657712","-106.043578","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005409", +"2005410","W1475 WELL NO 01","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1475, W3514","14534-F","03062353/12212609","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","35","40.0 N","8.0 E","N","","","","","406341.0","4169170.0","37.664938","-106.061945","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005410", +"2005411","W1506 WELL NO 03","MYERS 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1506","10413-F","14-10167-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","35","41.0 N","9.0 E","N","","","","","415836.0","4179194.0","37.756196","-105.955461","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005411", +"2005424","W3261 WELL NO 04","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3261","16804-F","05201600284/09061392","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","12","40.0 N","10.0 E","N","","","","","426644.0","4175605.0","37.724781","-105.832416","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005424", +"2005425","W3261 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3261","16805-F, 16805-F-R","12062495/09091387","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","12","40.0 N","10.0 E","N","","","","","427421.0","4175614.0","37.724924","-105.823601","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005425", +"2005427","21CW0027 WELL NO. 5-R","FIELD #8 WELL #5 SWX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0027, W2551","6998-R, 47688-F, 47688-F-R","212061084","SCOTT LIVING TRUST (JORIE S.) (SCOTT, LARRY); WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","20","40.0 N","8.0 E","N","","","","","401137.0","4172088.0","37.690688","-106.121335","02/06/2026 12:28","https://dwr.state.co.us/Tools/Structures/2005427", +"2005429","W3563 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3563","19795-F","09212319/12212617","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","33","41.0 N","9.0 E","N","","","","","412570.0","4178974.0","37.753907","-105.992506","02/07/2011 11:58","https://dwr.state.co.us/Tools/Structures/2005429", +"2005430","W1965 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1965","5660-F","11060536/11060654","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","33","41.0 N","9.0 E","N","","","","","411768.0","4178583.0","37.750306","-106.001562","12/05/2007 10:14","https://dwr.state.co.us/Tools/Structures/2005430", +"2005431","W1965 WELL NO 10","#5 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1965","24735-F","09-03358-03, 10063558/10063731, 11061405/11061604","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","NW","33","41.0 N","9.0 E","N","","","","","411774.0","4179599.0","37.759463","-106.001617","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005431", +"2005433","W3213 WELL NO 02","FIELD #15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3213","16183-F","20-04382","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","27","40.0 N","9.0 E","N","","","","","414542.0","4171538.0","37.687079","-105.969250","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005433", +"2005434","W3213 WELL NO 03","FIELD #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3213","16184-F, 16184-F-R","15-09214-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","26","40.0 N","9.0 E","N","","","","","415338.0","4171527.0","37.687054","-105.960221","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005434", +"2005435","W3737 WELL NO 08","FIELD #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3737","21674-F","GP12-6164-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","24","40.0 N","9.0 E","N","","","","","417776.0","4173144.0","37.701849","-105.932756","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005435", +"2005439","80CW069 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0069","18862-F","07-8-1439","BRADLEY, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","31","40.0 N","7.0 E","N","","","","","389348.0","4169360.0","37.664759","-106.254606","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005439", +"2005443","W1021 WELL NO 03","QUARTER #1 SOUTH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1021","5661-F","08061987/08062019","HOLLAND, DAVID; SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","2","40.0 N","9.0 E","N","","","","","416445.0","4177606.0","37.741940","-105.948366","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005443", +"2005444","W0888 WELL NO 01","YARD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0020, W0888","6367-R","12062506/11061605","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","13","40.0 N","7.0 E","N","","","","","397933.0","4173742.0","37.705242","-106.157900","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005444", +"2005446","W1531 WELL NO 03","FIELD 2 - CONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1531","9049-F, 9049-F-R","09062765/10060085, 12204451/10060096","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","31","39.0 N","10.0 E","N","","","","","419214.0","4160217.0","37.585475","-105.915015","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005446", +"2005447","W1531 WELL NO 04","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1531","9050-F","21-04607-08, 25-07109","CJJ FARMS LLC (MOLINAR, OLIVIA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","31","39.0 N","10.0 E","N","","","","","419194.0","4159401.0","37.578119","-105.915152","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005447", +"2005448","W1531 WELL NO 05","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1531","9051-F","","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2018","3","20","ALAMOSA","","","","NE","SW","31","39.0 N","10.0 E","N","","","","","418410.0","4159406.0","37.578095","-105.924030","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005448", +"2005452","W1767 WELL NO 01","#11 , FKA 2014215","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0037, 17CW3022, 81CW0040, W1767","12233-F, 20662-F","09062783/10060093","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","13","40.0 N","10.0 E","N","","","","","427418.0","4174793.0","37.717525","-105.823553","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005452", +"2005454","W0714 WELL NO 08","3P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0714","15401-F","10063529/10063707, 10063599/10063660","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","16","40.0 N","9.0 E","N","","","","","412967.0","4174782.0","37.716166","-105.987498","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005454", +"2005461","W0723 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0036, 06CW0002, W0723","13251-R","07060366/07060924, 07060400/07060932","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","SW","NW","11","40.0 N","7.0 E","N","","","","","395523.0","4176177.0","37.726913","-106.185585","09/25/2007 10:16","https://dwr.state.co.us/Tools/Structures/2005461", +"2005462","W1092 WELL NO 01","CANAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1092","10363-R","032018002080/12062699, 10063559/10063730","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","34","40.0 N","7.0 E","N","","","","","393807.0","4169350.0","37.665195","-106.204058","11/03/2022 15:23","https://dwr.state.co.us/Tools/Structures/2005462", +"2005465","W1964 WELL NO 18","BIGELOW 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1964","11638-R, 11638-R-R","12061276/12061325","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","26","41.0 N","9.0 E","N","","","","","415073.0","4180889.0","37.771400","-105.964320","05/24/2005 09:48","https://dwr.state.co.us/Tools/Structures/2005465", +"2005466","W1531 WELL NO 06","FIELD 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1531","9052-F","10062769/10062819, 18-07650-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","31","39.0 N","10.0 E","N","","","","","418409.0","4160196.0","37.585214","-105.924130","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005466", +"2005467","W1539 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1539","13769-R, 13769-R-R","GP11-4815-8","MCKINLEY, ROBERT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","35","40.0 N","10.0 E","N","","","","","425386.0","4168794.0","37.663296","-105.845992","11/19/2012 14:32","https://dwr.state.co.us/Tools/Structures/2005467", +"2005468","W1537 WELL NO 01","M2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1537","9036-F","09-6-1212","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","17","39.0 N","10.0 E","N","","","","","420875.0","4165011.0","37.628824","-105.896723","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005468", +"2005469","W1537 WELL NO 02","M1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1537","9037-F, 9037-F-R","07-6-1127, 112018000039","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","17","39.0 N","10.0 E","N","","","","","420065.0","4165015.0","37.628790","-105.905902","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005469", +"2005470","W1537 WELL NO 03","M4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0009, 17CW0011, W1537","9038-F","09-6-1210","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2011","10/31/2024","3","20","ALAMOSA","","","","NE","SW","17","39.0 N","10.0 E","N","","","","","420065.0","4164222.0","37.621644","-105.905815","08/14/2013 15:27","https://dwr.state.co.us/Tools/Structures/2005470", +"2005471","W1537 WELL NO 04","M3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1537","9039-F","GP13-5997","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NE","SE","17","39.0 N","10.0 E","N","","","","","420862.0","4164215.0","37.621649","-105.896784","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005471", +"2005474","W1266 WELL NO 08","B-3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1266","13800-R","05062237/05062218","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","16","40.0 N","9.0 E","N","","","","","411795.0","4175174.0","37.719587","-106.000841","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005474", +"2005476","81CW086 WELL NO 01","FIELD #62","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0086","21294-F, 21294-F-R, 21294-F-R","60512019815","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","20","39.0 N","10.0 E","N","","","","","419855.0","4163407.0","37.614280","-105.908105","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005476", +"2005481","W3573 WELL NO 01R","M1 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3573","10411-R-R, 10411-R-R, 10411-R-R","12061262/12212605","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","25","40.0 N","7.0 E","N","","","","","397492.0","4171655.0","37.686386","-106.162609","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005481", +"2005482","79CW0043 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0043, 85CW0050","20701-F, 24309-F","06-6-2158","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","25","39.0 N","9.0 E","N","","","","","417617.0","4161820.0","37.599780","-105.933282","11/06/2024 09:00","https://dwr.state.co.us/Tools/Structures/2005482", +"2005483","W3383 WELL NO 03A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0041, W3383","23574-F","17-06920-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","29","39.0 N","9.0 E","N","","","","","410290.0","4161109.0","37.592687","-106.016187","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005483", +"2005484","81CW0005 WELL NO. 1-A","MOMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0005","22715-F","10063523/10063699","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","19","39.0 N","9.0 E","N","","","","","408691.0","4162736.0","37.607192","-106.034499","12/01/2022 13:20","https://dwr.state.co.us/Tools/Structures/2005484", +"2005488","80CW024 WELL NO 01A","HOME QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0024","23569-F","06123273/12062752-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","7","39.0 N","10.0 E","N","","","","","418482.0","4165880.0","37.636447","-105.923936","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005488", +"2005489","82CW081 WELL NO 01S","HOME QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0081","25590-F","06123273/12062752-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","39.0 N","10.0 E","N","","","","","418100.0","4166091.0","37.638315","-105.928289","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005489", +"2005490","81CW141 WELL NO 02A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0141","23347-F","10061929/10062024","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","19","40.0 N","8.0 E","N","","","","","399926.0","4172458.0","37.693891","-106.135119","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005490", +"2005493","W3401 WELL NO 03A","DAVENPORT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3401","19307-F","05060757/05060795","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","40.0 N","7.0 E","N","","","","","394285.0","4177344.0","37.737288","-106.199800","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005493", +"2005494","81CW065 WELL NO 01A","CAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0065","23446-F","100896/12061382","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","18","40.0 N","9.0 E","N","","","","","409734.0","4173994.0","37.708752","-106.024077","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005494", +"2005495","79CW014 WELL NO 01A","SCHROFF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0014","22875-F","20-06163-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","39.0 N","8.0 E","N","","","","","407083.0","4164356.0","37.621630","-106.052920","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005495", +"2005496","81CW061 WELL NO 08S","3A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0061","24731-F","10063529/10063707","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","16","40.0 N","9.0 E","N","","","","","412903.0","4174806.0","37.716376","-105.988227","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005496", +"2005497","81CW0083 WELL NO. 1-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0083","22708-F","07060366/07060924, 07060400/07060932","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","SW","NW","11","40.0 N","7.0 E","N","","","","","395926.0","4176504.0","37.729906","-106.181059","12/01/2022 13:21","https://dwr.state.co.us/Tools/Structures/2005497", +"2005498","81CW121 WELL NO 04A","FIELD B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0121","22906-F","10062697/10062870","HOLLAND, GLEN & MARTHA; HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","23","40.0 N","8.0 E","N","","","","","406395.0","4172395.0","37.694007","-106.061747","01/11/2001 00:00","https://dwr.state.co.us/Tools/Structures/2005498", +"2005499","80CW082 WELL NO 01A","LITTLE PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0020, 80CW0082","24399-F","11060584/11060613","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","13","40.0 N","7.0 E","N","","","","","398312.0","4174075.0","37.708285","-106.153648","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005499", +"2005503","80CW079 WELL NO 03A","QT#1 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0079","22886-F","16-08662-8","HOLLAND, DAVID; SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","NE","2","40.0 N","9.0 E","N","","","","","416205.0","4177978.0","37.745271","-105.951132","12/20/2007 16:39","https://dwr.state.co.us/Tools/Structures/2005503", +"2005504","81CW084 WELL NO 01A","CANAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0084","23249-F","032018002080/12062699, 10063559/10063730","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","34","40.0 N","7.0 E","N","","","","","394200.0","4169286.0","37.664664","-106.199594","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005504", +"2005505","81CW155 WELL NO 08A","B-3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0155","24092-F","05062237/05062218","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","16","40.0 N","9.0 E","N","","","","","412148.0","4174787.0","37.716133","-105.996790","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005505", +"2005507","W3774 WELL NO 03A","QTR 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3774","23290-F","14-10167-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","35","41.0 N","9.0 E","N","","","","","416217.0","4179777.0","37.761485","-105.951204","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005507", +"2005508","W3774 WELL NO 03AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3774","23289-F","14-10167-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","35","41.0 N","9.0 E","N","","","","","416226.0","4179585.0","37.759755","-105.951079","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005508", +"2005509","80CW124 WELL NO 01S","FIELD #35","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","23831-F","60603316287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","2","39.0 N","10.0 E","N","","","","","425721.0","4167481.0","37.651490","-105.842061","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005509", +"2005510","80CW124 WELL NO 03S","FIELD 2 - UNCONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","23829-F","09062765/10060085, 12204451/10060096","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","31","39.0 N","10.0 E","N","","","","","419104.0","4160350.0","37.586664","-105.916276","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005510", +"2005511","80CW124 WELL NO 04S","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","23830-F","21-04607-08, 25-07109","CJJ FARMS LLC (MOLINAR, OLIVIA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","31","39.0 N","10.0 E","N","","","","","419019.0","4159376.0","37.577878","-105.917131","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005511", +"2005512","80CW124 WELL NO 05S","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","23832-F","","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SW","31","39.0 N","10.0 E","N","","","","","418224.0","4159419.0","37.578195","-105.926138","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005512", +"2005513","81CW127 WELL NO 06S","FIELD 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0127","22660-F","10062769/10062819, 18-07650-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","31","39.0 N","10.0 E","N","","","","","418405.0","4159998.0","37.583430","-105.924153","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005513", +"2005514","81CW127 WELL NO 06SS","FIELD 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0127","25184-F","10062769/10062819, 18-07650-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","31","39.0 N","10.0 E","N","","","","","418282.0","4160245.0","37.585645","-105.925573","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005514", +"2005515","81CW136 WELL NO 01AA","M2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0136","24389-F","GP09-06-1211","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","17","39.0 N","10.0 E","N","","","","","420926.0","4165184.0","37.630388","-105.896164","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005515", +"2005516","81CW136 WELL NO 02A","M1 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0136","24315-F","07-6-1127, 112018000039","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","17","39.0 N","10.0 E","N","","","","","420066.0","4165194.0","37.630404","-105.905910","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005516", +"2005517","17CW0011 WELL NO 3AR","M4 NORTH EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0009, 17CW0011, 81CW0136","24314-F, 83232-F","01201389/10190350","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2011","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","39.0 N","10.0 E","N","","","","","420220.0","4164603.0","37.625091","-105.904101","11/05/2025 13:33","https://dwr.state.co.us/Tools/Structures/2005517", +"2005518","81CW136 WELL NO 04A","M3 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0136","24313-F","13-09646-6","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NE","SE","17","39.0 N","10.0 E","N","","","","","420913.0","4164391.0","37.623240","-105.896225","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005518", +"2005519","81CW136 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0136","24310-F","GP11-4815-8","MCKINLEY, ROBERT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","35","40.0 N","10.0 E","N","","","","","425784.0","4169155.0","37.666582","-105.841517","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005519", +"2005521","81CW123 WELL NO 18A","BIGELOW 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0123","24274-F","12061276/12061325","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","26","41.0 N","9.0 E","N","","","","","415433.0","4181197.0","37.774209","-105.960269","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005521", +"2005522","80CW027 WELL NO 01A","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0027","24749-F","11060536/11060654","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","33","41.0 N","9.0 E","N","","","","","412148.0","4178807.0","37.752361","-105.997276","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005522", +"2005523","80CW027 WELL NO 10A","SUMMIT #5 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0027","24750-F","11061405/11061604","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","33","41.0 N","9.0 E","N","","","","","412172.0","4179593.0","37.759447","-105.997098","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005523", +"2005524","81CW0004 WELL NO. 6-A","CIRCLE 8 UNCONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0004","24001-F","100922/12061334","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","7","40.0 N","9.0 E","N","","","","","409728.0","4175607.0","37.723288","-106.024345","12/01/2022 13:19","https://dwr.state.co.us/Tools/Structures/2005524", +"2005525","79CW020 WELL NO 05A","#8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0020","25016-F, 90482-F","06-8-3157","SCOTT LIVING TRUST (JORIE S.) (SCOTT, LARRY); WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","20","40.0 N","8.0 E","N","","","","","401564.0","4172431.0","37.693825","-106.116539","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005525", +"2005526","81CW081 WELL NO 03A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25118-F","042017003880/10062804-Pivot Riser","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","17","40.0 N","8.0 E","N","","","","","401556.0","4174044.0","37.708360","-106.116848","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005526", +"2005527","81CW081 WELL NO 05A","BUCHER #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25117-F","10062749/10062839","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","5","39.0 N","8.0 E","N","","","","","401502.0","4167682.0","37.651022","-106.116601","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005527", +"2005528","81CW055 WELL NO 19A","PIVOT - HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0055","25119-F","12062640/08223630","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","8","40.0 N","8.0 E","N","","","","","401589.0","4175658.0","37.722909","-106.116692","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005528", +"2005529","80CW039 WELL NO 03S","FIELD #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0039","22575-F","15-09214-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","26","40.0 N","9.0 E","N","","","","","415267.0","4171525.0","37.687030","-105.961026","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005529", +"2005530","80CW039 WELL NO 02S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0039","22574-F","20-04382","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NE","27","40.0 N","9.0 E","N","","","","","414604.0","4171542.0","37.687121","-105.968547","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005530", +"2005531","W3957 WELL NO 03S","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3957","20760-F","12062495/09091387","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","12","40.0 N","10.0 E","N","","","","","427395.0","4175434.0","37.723300","-105.823878","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2005531", +"2005532","W3957 WELL NO 04S","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3957","20761-R, 20761-R-R","05201600284/09061392","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","12","40.0 N","10.0 E","N","","","","","426593.0","4175429.0","37.723191","-105.832977","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005532", +"2005533","81CW061 WELL NO 03S","BETH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0061","24732-F","07061125/07061186","KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","23","40.0 N","9.0 E","N","","","","","415336.0","4172433.0","37.695219","-105.960349","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005533", +"2005535","80CW027 WELL NO 01AA","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0027","24755-F","09212319/12212617","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","33","41.0 N","9.0 E","N","","","","","412968.0","4178796.0","37.752340","-105.987967","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005535", +"2005536","80CW039 WELL NO 08S","FIELD #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0039","22579-F","GP12-6164-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","24","40.0 N","9.0 E","N","","","","","417844.0","4173144.0","37.701855","-105.931985","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005536", +"2005537","81CW194 WELL NO 01","FIELD #62","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0194","23601-F","60512019815","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","39.0 N","10.0 E","N","","","","","420050.0","4163584.0","37.615892","-105.905916","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005537", +"2005538","82CW011 WELL NO 02","FIELD #62","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0011","25720-F","60512019815","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","39.0 N","10.0 E","N","","","","","420055.0","4163470.0","37.614865","-105.905846","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005538", +"2005560","80CW076 WELL NO 06R","WEST DONNELY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0076","16122-F-R","12061269/12061333","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","28","41.0 N","7.0 E","N","","","","","392800.0","4180557.0","37.766068","-106.217125","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005560", +"2005567","W0049 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0049","816-R, 816-R-R","12062625/12062672, 19-02635-6","KLECKER RANCH, INC.; KLECKER, GARY","RGWCD SD1","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","1","39.0 N","7.0 E","N","","","","","396997.0","4168077.0","37.654087","-106.167716","07/17/2013 09:14","https://dwr.state.co.us/Tools/Structures/2005567", +"2005568","82CW061 WELL NO 03A","5 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0061","24774-F, 24774-F-R","12062625/12062672, 19-02635-6","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","1","39.0 N","7.0 E","N","","","","","397395.0","4167741.0","37.651104","-106.163158","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005568", +"2005569","W0426 WELL NO PUMP 03","FIELD #72","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0426","11047-R, 11047-R-R","20-04310, 60604105832","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","31","40.0 N","10.0 E","N","","","","","418142.0","4169452.0","37.668608","-105.928190","10/02/2007 17:28","https://dwr.state.co.us/Tools/Structures/2005569", +"2005570","82CW085 PUMP WELL NO 03A","FIELD #72","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0085","25148-F","20-04310, 60604105832","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","31","40.0 N","10.0 E","N","","","","","418231.0","4169415.0","37.668283","-105.927177","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005570", +"2005571","W0431 WELL NO 01","ALAMOSA WELLS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0431","9441-F, 9441-F-R","10062705/10062862","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","14","39.0 N","9.0 E","N","","","","","415161.0","4164340.0","37.622267","-105.961393","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005571", +"2005572","82CW117 WELL NO 01A","MAP 19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0025, 11CW0013, 82CW0117","25700-F, 25700-F-R","10062705/10062862","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","14","39.0 N","9.0 E","N","","","","","414901.0","4164590.0","37.624496","-105.964368","08/01/2008 15:46","https://dwr.state.co.us/Tools/Structures/2005572", +"2005574","82CW096 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0096","23570-F","12062600/12062657","ENTZ, ALLEN R.; HATHAWAY, WILL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","18","39.0 N","9.0 E","N","","","","","409521.0","4164326.0","37.621603","-106.025294","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005574", +"2005575","W0888 WELL NO 10","11 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0888","579-R, 579-R-R","12061261/12061336, 18-05843-06","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","2","40.0 N","7.0 E","N","","","","","395554.0","4177011.0","37.734432","-106.185353","07/10/2023 11:54","https://dwr.state.co.us/Tools/Structures/2005575", +"2005576","82CW009 WELL NO 10A","11 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0009","22134-F, 22134-F-R","12061261/12061336, 18-05843-06","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","2","40.0 N","7.0 E","N","","","","","395948.0","4177325.0","37.737307","-106.180927","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005576", +"2005578","W0098 WELL NO 04","SOUTH FELMLEE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0098","20403-S","03063661/03063692","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","36","41.0 N","7.0 E","N","","","","","397192.0","4179373.0","37.755903","-106.167101","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005578", +"2005579","81CW017 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0017","24198-F","03063661/03063692","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","36","41.0 N","7.0 E","N","","","","","397596.0","4179702.0","37.758913","-106.162562","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005579", +"2005582","W3944 WELL NO 18","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3944","23078-F","10242144/08223635","CLAYTON FARMS, LLC (ROD CLAYTON); CLAYTON, BRANDT D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","22","40.0 N","10.0 E","N","","","","","424212.0","4172371.0","37.695437","-105.859674","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005582", +"2005583","81CW032 WELL NO 18S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0032","24464-F","10242144/08223635","CLAYTON FARMS, LLC (ROD CLAYTON); CLAYTON, BRANDT D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","22","40.0 N","10.0 E","N","","","","","424011.0","4172368.0","37.695393","-105.861953","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005583", +"2005584","81CW049 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0011, 81CW0049","22522-F, 22522-F-R","11061524/11061542, 19-04778-08","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","40.0 N","10.0 E","N","","","","","419441.0","4177149.0","37.738090","-105.914314","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005584", +"2005586","80CW007 WELL NO 01","MYERS 3 DOGLEG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0018, 80CW0007","16250-F","22-06217-06","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","34","41.0 N","9.0 E","N","","","","","414186.0","4178442.0","37.749265","-105.974101","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005586", +"2005587","80CW007 WELL NO 01A","MYERS 3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0018, 80CW0007","24753-F","072019003977/022019002166","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","34","41.0 N","9.0 E","N","","","","","414591.0","4178786.0","37.752403","-105.969545","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005587", +"2005588","W0893 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0893","12645-R, 12645-R-R","12061269/12061333","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","28","41.0 N","7.0 E","N","","","","","392427.0","4180213.0","37.762924","-106.221308","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005588", +"2005589","80CW035 WELL NO 1R","3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0035","12881-R-R, 12881-R-R","06-8-3858","SCOTT LIVING TRUST (SCOTT, LARRY); SCOTT, LARRY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","19","40.0 N","8.0 E","N","","","","","399110.0","4173259.0","37.701020","-106.144484","11/04/2008 11:49","https://dwr.state.co.us/Tools/Structures/2005589", +"2005590","80CW035 WELL NO 02R","17 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0035","6835-R-R, 6835-R-R","06-8-3861","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","24","40.0 N","7.0 E","N","","","","","398295.0","4172480.0","37.693910","-106.153618","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005590", +"2005592","80CW076 WELL NO 02R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0076","13024-R","112018004259/12061350","SCHMIDT, BEN; TEAYS, ALYSIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","33","41.0 N","7.0 E","N","","","","","392761.0","4179730.0","37.758611","-106.217445","01/23/2004 16:21","https://dwr.state.co.us/Tools/Structures/2005592", +"2005593","80CW076 WELL NO 03R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0076","13024-S","12061243/12061339","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","32","41.0 N","7.0 E","N","","","","","391901.0","4178980.0","37.751751","-106.227095","01/23/2004 16:20","https://dwr.state.co.us/Tools/Structures/2005593", +"2005594","81CW032 WELL NO 01R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0032","10164-F-R","12212676/09212236","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","22","40.0 N","10.0 E","N","","","","","423040.0","4172547.0","37.696926","-105.872985","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005594", +"2005595","81CW034 WELL NO 01R","PIVOT NG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0034","584-R-R","06-8-3514","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","NE","SE","31","40.0 N","7.0 E","N","","","","","390141.0","4169358.0","37.664836","-106.245617","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005595", +"2005596","81CW158 WELL NO 01R","EAST HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0158","11628-R, 13862-R, 11628-R-R","09062775","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","6","39.0 N","8.0 E","N","","","","","399884.0","4167683.0","37.650856","-106.134939","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005596", +"2005597","82CW002 WELL NO 02R","NORTH BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0002","1333-R-R","09061930/09061972","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","32","40.0 N","8.0 E","N","","","","","400298.0","4169783.0","37.669826","-106.130534","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005597", +"2005598","82CW029 WELL NO 04R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0002, 82CW0029","12602-R-R, 90356-F","20-03588-08","CARPENTER, CODY; CARPENTER, KENNETH L.; VICKI SUE BAMBER TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","19","40.0 N","9.0 E","N","","","","","409733.0","4173176.0","37.701380","-106.023987","03/11/2004 09:27","https://dwr.state.co.us/Tools/Structures/2005598", +"2005599","82CW034 WELL NO 01R","# 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0034","12274-F-R","11060509/072019003988","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","32","39.0 N","9.0 E","N","","","","","410298.0","4160689.0","37.588902","-106.016045","01/27/2004 10:18","https://dwr.state.co.us/Tools/Structures/2005599", +"2005601","82CW091 WELL NO 03R","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0091","3154-F-R","09061285/09061366","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","40.0 N","9.0 E","N","","","","","410523.0","4173175.0","37.701449","-106.015027","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005601", +"2005605","82CW135 WELL NO 01R","EVERETT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0135","14144-R","12062524/12062763","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","28","40.0 N","8.0 E","N","","","","","403137.0","4171595.0","37.686459","-106.098589","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005605", +"2005608","80CW032 WELL NO 04R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0008, 80CW0032","6162-R-R","03241784","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NE","14","39.0 N","8.0 E","N","","","","","406302.0","4165573.0","37.632519","-106.061925","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005608", +"2005609","81CW062 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0062","1467-R-R","11061472/01201343","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","10","40.0 N","9.0 E","N","","","","","414566.0","4175416.0","37.722030","-105.969433","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005609", +"2005612","81CW121 WELL NO 02R","FIELD A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0121","12049-R","10062687/10062867","HOLLAND, GLEN & MARTHA; HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","23","40.0 N","8.0 E","N","","","","","405589.0","4172395.0","37.693924","-106.070887","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005612", +"2005613","81CW121 WELL NO 07R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0121","10646-R-R","09061297/06214532","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","30","40.0 N","9.0 E","N","","","","","408871.0","4171556.0","37.686695","-106.033561","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005613", +"2005614","81CW0011 WELL NO. 2-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0011","23231-F","04060152/04060126","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","11","40.0 N","8.0 E","N","","","","","406453.0","4175612.0","37.723004","-106.061502","12/01/2022 13:23","https://dwr.state.co.us/Tools/Structures/2005614", +"2005617","80CW070 WELL NO 04R","NEVITT 38","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0070","10765-F-R","02060437, 12062509/12062771","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","25","41.0 N","8.0 E","N","","","","","408137.0","4180429.0","37.766584","-106.043006","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005617", +"2005621","W3774 WELL NO 01R","HOME CENTER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3774","1029-R-R","12204452/12204376-10019","MYERS, JANET","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","6","40.0 N","9.0 E","N","","","","","408913.0","4177989.0","37.744673","-106.033890","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005621", +"2005642","81CW0002 WELL NO. 1","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0002","20542-F","05060228","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","23","39.0 N","9.0 E","N","","","","","415134.0","4163463.0","37.614361","-105.961597","12/01/2022 13:19","https://dwr.state.co.us/Tools/Structures/2005642", +"2005643","82CW001 WELL NO 01S","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0001","25316-F","05060228","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","23","39.0 N","9.0 E","N","","","","","414965.0","4163419.0","37.613949","-105.963507","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005643", +"2005645","W3318 WELL NO 02","LESTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0069, W3318","20808-F","06-8-1711","LESTER, TREVOR; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","17","40.0 N","7.0 E","N","","","","","391014.0","4174185.0","37.708437","-106.236443","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005645", +"2005646","10CW0039 WELL NO 02","9 MILE MARSHALL STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0039, 81CW0085, W3429","5610-AD, 25429-F, 76955-F","8352451","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","21","40.0 N","8.0 E","N","","","","","402841.0","4173565.0","37.704181","-106.102208","11/19/2013 16:32","https://dwr.state.co.us/Tools/Structures/2005646", +"2005647","21CW0018 WELL NO 1-S","MYERS 3 NE CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0008","87864-F","23-05454-06","CONSAUL, SCOTT","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","NE","SE","34","41.0 N","9.0 E","N","","","","","414872.0","4179153.0","37.755727","-105.966388","08/13/2024 15:48","https://dwr.state.co.us/Tools/Structures/2005647", +"2005648","W3510 WELL NO 02A","NE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0074, W3510","23575-F","09061300/09061378","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","24","40.0 N","6.0 E","N","","","","","388587.0","4173389.0","37.700973","-106.263849","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005648", +"2005652","81CW171 WELL NO 01RR","CELLAR QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0171","12177-R-R","06123277/05062214-GROUNDWATER, 06-6-2096","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","18","39.0 N","10.0 E","N","","","","","419111.0","4165212.0","37.630482","-105.916734","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005652", +"2005653","81CW171 WELL NO 01A","CELLAR QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0171","24109-F","06123277/05062214-GROUNDWATER, 06-6-2096","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","18","39.0 N","10.0 E","N","","","","","419264.0","4165039.0","37.628937","-105.914981","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005653", +"2005654","81CW171 WELL NO 01AA","CELLAR QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0171","24600-F, 24600-F-R","06123277/05062214-GROUNDWATER, 06-6-2096","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","18","39.0 N","10.0 E","N","","","","","419032.0","4165057.0","37.629078","-105.917612","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005654", +"2005656","82CW180 WELL NO 05R","FIELD #29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0180","13291-R-R","60604117030","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","19","40.0 N","10.0 E","N","","","","","418579.0","4173134.0","37.701830","-105.923647","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005656", +"2005659","84CW004 WELL NO 01RR","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0004","6415-F-R","11060499/11060690","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","40.0 N","10.0 E","N","","","","","420995.0","4172518.0","37.696490","-105.896176","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005659", +"2005660","84CW004 WELL NO 01A","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0004","21144-F","11060499/11060690","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","40.0 N","10.0 E","N","","","","","420992.0","4172334.0","37.694832","-105.896190","10/28/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005660", +"2005662","81CW175 WELL NO 01R","AMP #9, HOOKS #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0175","10721-F-R","","MS HOOKS FARMS LLC (HOOKS, STACY)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NE","NW","24","40.0 N","10.0 E","N","","","","","426635.0","4173191.0","37.703024","-105.832275","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005662", +"2005663","81CW175 WELL NO 01S","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0175","25703-F","","MS HOOKS FARMS LLC (HOOKS, STACY)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","SE","NW","NW","24","40.0 N","10.0 E","N","","","","","426463.0","4173215.0","37.703227","-105.834229","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005663", +"2005665","81CW175 WELL NO 02R","HOOKS #15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0175","10720-F-R","","MS HOOKS FARMS LLC (HOOKS, STACY)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","SW","NE","24","40.0 N","10.0 E","N","","","","","427413.0","4173151.0","37.702726","-105.823446","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005665", +"2005666","81CW175 WELL NO 02S","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0175","25702-F","","MS HOOKS FARMS LLC (HOOKS, STACY)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NW","NE","24","40.0 N","10.0 E","N","","","","","427271.0","4173278.0","37.703859","-105.825070","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005666", +"2005668","W0053 WELL NO 03","RYANS HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0053","2194-F","02060447","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","18","40.0 N","7.0 E","N","","","","","389822.0","4175267.0","37.718045","-106.250127","07/16/2008 15:01","https://dwr.state.co.us/Tools/Structures/2005668", +"2005669","82CW130 WELL NO 03A","RYAN'S HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0130","23381-F","02060447","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","18","40.0 N","7.0 E","N","","","","","390207.0","4174973.0","37.715442","-106.245715","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005669", +"2005670","W0102 WELL NO 32","CHICO 8C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0102","14657-F","09062755/06200661, 10061907/10062061","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","13","39.0 N","9.0 E","N","","","","","416858.0","4165081.0","37.629101","-105.942250","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005670", +"2005671","81CW079 WELL NO 32A","CHICO 8T","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0079","22878-F","09062755/06200661, 10061907/10062061","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","13","39.0 N","9.0 E","N","","","","","416670.0","4165161.0","37.629805","-105.944389","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005671", +"2005672","W0102 WELL NO 33","CHICO #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0102","5477-F","09062741/01250069, 09062742/012017001506","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","13","39.0 N","9.0 E","N","","","","","416852.0","4164273.0","37.621818","-105.942226","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005672", +"2005673","81CW079 WELL NO 33A","CHICO 9T","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0079","22836-F","09062741/01250069, 09062742/012017001506","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","13","39.0 N","9.0 E","N","","","","","416695.0","4164364.0","37.622624","-105.944015","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005673", +"2005674","W0196 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0196","777-F-R, 4651-F","06-6-1306, 07-6-1055, GP13-4669-8","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","13","39.0 N","9.0 E","N","","","","","417660.0","4165066.0","37.629038","-105.933160","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005674", +"2005675","83CW003 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0003","25314-F","06-6-1306, 07-6-1055, GP13-4669-8","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","13","39.0 N","9.0 E","N","","","","","417847.0","4165078.0","37.629162","-105.931043","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005675", +"2005678","W0198 WELL NO 03","CHICO 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0198","15405-F","09062721/10060153","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","34","40.0 N","9.0 E","N","","","","","414494.0","4169908.0","37.672385","-105.969603","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005678", +"2005679","13CW3003 WELL NO 03A-R","CHICO 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW3003, 82CW0193","25382-F, 25382-F-R","09062721/10060153","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","34","40.0 N","9.0 E","N","","","","","414354.0","4169811.0","37.671498","-105.971179","11/04/2020 11:41","https://dwr.state.co.us/Tools/Structures/2005679", +"2005680","W0198 WELL NO 04","CHICO 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0198","15403-F","10063603/10063637","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","34","40.0 N","9.0 E","N","","","","","413699.0","4169935.0","37.672554","-105.978620","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005680", +"2005681","82CW193 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0193","25380-F","10063603/10063637","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","34","40.0 N","9.0 E","N","","","","","413527.0","4170004.0","37.673160","-105.980578","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005681", +"2005682","W0198 WELL NO 05","CHICO 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0198","15404-F","10062706/09212232","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","34","40.0 N","9.0 E","N","","","","","414460.0","4169118.0","37.665262","-105.969896","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005682", +"2005683","82CW193 WELL NO 05A","CHICO 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0193","25381-F","10062706/09212232","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","34","40.0 N","9.0 E","N","","","","","414315.0","4169022.0","37.664384","-105.971528","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005683", +"2005684","W0309 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0015, W0309","15826-F","23-05836-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","39.0 N","9.0 E","N","","","","","410310.0","4162722.0","37.607225","-106.016158","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005684", +"2005685","83CW070 WELL NO 03S","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0015, 83CW0070","26678-F","23-05836-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","39.0 N","9.0 E","N","","","","","410119.0","4162725.0","37.607234","-106.018322","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005685", +"2005687","82CW195 WELL NO 01A","JDS #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0195","22712-F","12061224/12061391-100874","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","16","39.0 N","8.0 E","N","","","","","403043.0","4164423.0","37.621817","-106.098702","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005687", +"2005689","81CW0006 WELL NO. 4-A","7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0006","25116-F","01061419/11061559","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","12","39.0 N","8.0 E","N","","","","","407145.0","4166802.0","37.643680","-106.052529","12/01/2022 13:20","https://dwr.state.co.us/Tools/Structures/2005689", +"2005690","W0326 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0326","6348-R","03062368/03062408","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","26","40.0 N","8.0 E","N","","","","","405985.0","4171372.0","37.684746","-106.066264","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005690", +"2005691","82CW197 WELL NO 02A","DAVISON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0197","21707-F","03062368/03062408","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","26","40.0 N","8.0 E","N","","","","","406383.0","4171570.0","37.686571","-106.061777","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005691", +"2005692","W0329 WELL NO 01","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0329","128-R-R","06-8-4925","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","16","39.0 N","8.0 E","N","","","","","401883.0","4164817.0","37.625244","-106.111897","11/18/1994 00:00","https://dwr.state.co.us/Tools/Structures/2005692", +"2005693","82CW195 WELL NO 01AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0195","24465-F","06-8-4925","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","16","39.0 N","8.0 E","N","","","","","402246.0","4164425.0","37.621750","-106.107732","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005693", +"2005694","W0372 WELL NO 05","19 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0372","4223-F","01061401/01061401","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","16","39.0 N","8.0 E","N","","","","","402660.0","4165574.0","37.632149","-106.103195","10/26/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005694", +"2005695","82CW195 WELL NO 05A","19 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0195","22713-F","01061401/01061401","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","16","39.0 N","8.0 E","N","","","","","403061.0","4165231.0","37.629100","-106.098605","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005695", +"2005697","82CW197 WELL NO 02AA","WORLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0197","21708-F","03062357/03062383","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","26","40.0 N","8.0 E","N","","","","","405578.0","4171583.0","37.686606","-106.070907","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005697", +"2005700","W0462 WELL NO 01","S CHAM HEAD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0462","4562-R","09061327/072016000283","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","25","40.0 N","8.0 E","N","","","","","406793.0","4171066.0","37.682071","-106.057063","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005700", +"2005702","W0462 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0462","4564-R","03062359","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","25","40.0 N","8.0 E","N","","","","","406797.0","4170877.0","37.680368","-106.056993","11/12/2008 10:36","https://dwr.state.co.us/Tools/Structures/2005702", +"2005703","W0462 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0462","5842-F","09212235","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","25","40.0 N","8.0 E","N","","","","","406809.0","4171360.0","37.684722","-106.056919","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005703", +"2005704","81CW0009 WELL NO. 5","SOUTH CHAMBERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0009","24618-F","03062359","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","25","40.0 N","8.0 E","N","","","","","407175.0","4170774.0","37.679478","-106.052694","12/01/2022 13:21","https://dwr.state.co.us/Tools/Structures/2005704", +"2005705","81CW080 WELL NO 01A","NORTH CHAMBERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0080, 87CW0026","28978-F","09212235","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","25","40.0 N","8.0 E","N","","","","","407208.0","4171568.0","37.686637","-106.052421","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2005705", +"2005707","82CW070 WELL NO 03A","HOWEY #13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0070","24928-F","10062725/05062217","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","11","40.0 N","8.0 E","N","","","","","406467.0","4176398.0","37.730089","-106.061445","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005707", +"2005709","82CW070 WELL NO 03S","CENTER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0070","24831-F","06-8-3842","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","30","41.0 N","9.0 E","N","","","","","408962.0","4181222.0","37.773813","-106.033740","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005709", +"2005710","W0596 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0596","10252-R","10060675/10061065","PAULSON, ROCK B. & TERRI RAE; PAULSON, RONALD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","3","39.0 N","7.0 E","N","","","","","393792.0","4167919.0","37.652298","-106.204020","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005710", +"2005711","81CW015 WELL NO 01A","RIPPYS/DADS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0015","23560-F","10060675/10061065","PAULSON, ROCK B. & TERRI RAE; PAULSON, RONALD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","39.0 N","7.0 E","N","","","","","394174.0","4167770.0","37.651000","-106.199669","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005711", +"2005712","W0612 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0612","11162-R","08093040","JOLLY, DON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SW","SW","10","40.0 N","6.0 E","N","","","","","384477.0","4175522.0","37.719684","-106.310799","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005712", +"2005713","82CW067 WELL NO 01A","VALLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0067","22536-F","04060155/04060143","JOLLY, DON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","40.0 N","6.0 E","N","","","","","386208.0","4175810.0","37.722496","-106.291208","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005713", +"2005714","W0903 WELL NO JORDE 03","SUP 31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11968-R","18-10860-08","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","31","41.0 N","9.0 E","N","","","","","409358.0","4179384.0","37.757289","-106.029014","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005714", +"2005715","83CW065 WELL NO 03A","31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0065","26226-F","18-10860-08","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NE","31","41.0 N","9.0 E","N","","","","","409762.0","4179601.0","37.759284","-106.024456","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005715", +"2005716","W0903 WELL NO JORDE 04","SUP 32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11969-R, 11969-R-R","04060181/04060151","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","NW","32","41.0 N","9.0 E","N","","","","","410179.0","4179436.0","37.757838","-106.019702","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005716", +"2005717","83CW065 WELL NO JORDE 4A","32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0065","26227-F","04060181/04060151","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","32","41.0 N","9.0 E","N","","","","","410560.0","4179606.0","37.759408","-106.015398","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005717", +"2005718","W1047 WELL NO 03","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","12CW0030, W1047","13278-R, 13278-R-R","100889/052013002427","ORTEGA, ANGELINA; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","32","40.0 N","9.0 E","N","","","","","410817.0","4168867.0","37.662654","-106.011165","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005718", +"2005719","83CW011 WELL NO 03A","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0011","22000-F","100889/052013002427","ORTEGA, ANGELINA; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","32","40.0 N","9.0 E","N","","","","","411210.0","4169157.0","37.665305","-106.006745","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005719", +"2005720","W1047 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1047","","80-10-5005","ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","6","39.0 N","9.0 E","N","","","","","409987.0","4168720.0","37.661248","-106.020556","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005720", +"2005721","83CW011 WELL NO 04A","FIELD #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0011","24396-F","12061237/12061343","ORTEGA, ANGELINA; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","5","39.0 N","9.0 E","N","","","","","410394.0","4168356.0","37.658007","-106.015897","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005721", +"2005723","83CW030 WELL NO 06A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0030","25706-F","15-07395-8","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","9","40.0 N","9.0 E","N","","","","","412874.0","4175421.0","37.721916","-105.988630","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005723", +"2005726","W1674 WELL NO 04","#2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1674","10740-F","23-05833-08","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","32","40.0 N","10.0 E","N","","","","","419752.0","4169216.0","37.666624","-105.909911","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005726", +"2005727","83CW006 WELL NO 04A","#2 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0006","27109-F","06-6-2099","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","32","40.0 N","10.0 E","N","","","","","420139.0","4169135.0","37.665928","-105.905514","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005727", +"2005728","W2058 WELL NO 02","PIVOT #6, SOUTH RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2058","1843-R, 52091-F, 1843-R-R","09062715/10060131, 09062731/10060136","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","8","40.0 N","7.0 E","N","","","","","390690.0","4175490.0","37.720158","-106.240314","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005728", +"2005729","82CW119 WELL NO 02A","#6 - PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0119","21996-F, 21996-F-R","09062715/10060131","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","8","40.0 N","7.0 E","N","","","","","391042.0","4175808.0","37.723066","-106.236368","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005729", +"2005731","83CW023 WELL NO 02A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0023","25701-F","24-07177-08","DAVIS, STEVEN & KAREN; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","26","41.0 N","7.0 E","N","","","","","396008.0","4181315.0","37.773269","-106.180818","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005731", +"2005732","W2371 WELL NO MCKINLEY 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2371","9252-F","19-04423-04","JOHNSON, LUKE","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","NW","NW","30","39.0 N","10.0 E","N","","","","","418395.0","4161826.0","37.599903","-105.924470","02/06/2026 12:30","https://dwr.state.co.us/Tools/Structures/2005732", +"2005733","82CW166 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0166","24767-F, 24767-F-R","8215765","JOHNSON, LUKE","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","30","39.0 N","10.0 E","N","","","","","418296.0","4161830.0","37.599931","-105.925592","02/06/2026 12:37","https://dwr.state.co.us/Tools/Structures/2005733", +"2005734","82CW166 WELL NO 01SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0166","24768-F","19-04424-04","JOHNSON, LUKE","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","30","39.0 N","10.0 E","N","","","","","418491.0","4161814.0","37.599804","-105.923381","02/06/2026 12:39","https://dwr.state.co.us/Tools/Structures/2005734", +"2005737","82CW167 WELL NO 02SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0167","24762-F, 307018-","8923017, 8929559","CQST, INC (LAMERE, JOHN)","RGWCD SD1","10/31/2017","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","30","39.0 N","10.0 E","N","","","","","419142.0","4161814.0","37.599861","-105.916007","02/06/2026 12:40","https://dwr.state.co.us/Tools/Structures/2005737", +"2005739","83CW029 WELL NO 03A","#11 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0029","25283-F","10062690/10062893","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","27","41.0 N","9.0 E","N","","","","","414597.0","4181194.0","37.774105","-105.969760","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005739", +"2005740","W3263 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0033, W3263","20867-F","12061179/12061427","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","20","39.0 N","9.0 E","N","","","","","410310.0","4163514.0","37.614363","-106.016255","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005740", +"2005741","83CW070 WELL NO 01S","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0070","25886-F","12061179/12061427","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","20","39.0 N","9.0 E","N","","","","","410134.0","4163522.0","37.614418","-106.018250","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005741", +"2005742","W3544 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3544","17980-F","052013004564/12062682","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","36","40.0 N","9.0 E","N","","","","","417726.0","4169904.0","37.672645","-105.932958","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005742", +"2005743","82CW185 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0185","25446-F","052013004564/12062682","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","36","40.0 N","9.0 E","N","","","","","417526.0","4169914.0","37.672717","-105.935226","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005743", +"2005745","W3574 WELL NO 01A","SHOP QUARTER NORTHEAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, W3574","19560-F, 19560-F-R","GP06-06-2027","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","5","39.0 N","10.0 E","N","","","","","420368.0","4168681.0","37.661856","-105.902869","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005745", +"2005746","82CW189 WELL NO 01A","WEST PUMP SHOP QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","25147-F","18-05189-06","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","5","39.0 N","10.0 E","N","","","","","419972.0","4168318.0","37.658550","-105.907318","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005746", +"2005747","W3574 WELL NO 02","JERRY QUARTER PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3574","9245-F","06-6-1905","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","4","39.0 N","10.0 E","N","","","","","421758.0","4168301.0","37.658551","-105.887070","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005747", +"2005748","82CW189 WELL NO 02A","JERRY'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","21711-F","GP12-0846-6","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","4","39.0 N","10.0 E","N","","","","","421353.0","4168215.0","37.657741","-105.891652","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005748", +"2005749","82CW189 WELL NO 02AA","JERRY QUARTER NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","25145-F","06-6-1906","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","4","39.0 N","10.0 E","N","","","","","421754.0","4168491.0","37.660263","-105.887136","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005749", +"2005750","W3574 WELL NO 03","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, W3574","9246-F","06-6-2102","BURRIS, SHANE S.; CHAVES, BEVERLY A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","4","39.0 N","10.0 E","N","","","","","422532.0","4168313.0","37.658725","-105.878297","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005750", +"2005751","82CW189 WELL NO 03A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","21712-F","06-6-2107","BURRIS, SHANE S.; CHAVES, BEVERLY A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","4","39.0 N","10.0 E","N","","","","","422501.0","4168492.0","37.660335","-105.878667","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005751", +"2005752","82CW189 WELL NO 03AA","FAR NORTH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","24670-F","06-6-2114","BURRIS, SHANE S.; CHAVES, BEVERLY A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","4","39.0 N","10.0 E","N","","","","","422415.0","4168646.0","37.661716","-105.879659","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005752", +"2005753","W3574 WELL NO 04","WESTBROOK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3574","18631-F, 18631-F-R","052018002039/06123307","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","39.0 N","10.0 E","N","","","","","420927.0","4168282.0","37.658308","-105.896488","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005753", +"2005754","82CW189 WELL NO 04A","WESTBROOK/HOME QUARTER NORTHWEST WELL BY ROAD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","20463-F","06-6-2028","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","5","39.0 N","10.0 E","N","","","","","420587.0","4168697.0","37.662019","-105.900388","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005754", +"2005755","82CW189 WELL NO 04AA","WESTBROOK/HOME QUARTER NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0189","25146-F","06-6-1923","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","5","39.0 N","10.0 E","N","","","","","420943.0","4168464.0","37.659950","-105.896326","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005755", +"2005756","W3594 WELL NO 03","#33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3594","18001-F, 18001-F-R","062017001235/01250053","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","35","40.0 N","9.0 E","N","","","","","415281.0","4169132.0","37.665465","-105.960590","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005756", +"2005757","83CW079 WELL NO 03S","#33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0079","23343-F","062017001235/01250053","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","35","40.0 N","9.0 E","N","","","","","415274.0","4168929.0","37.663635","-105.960645","10/29/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005757", +"2005758","81CW0003 WELL NO. 1","HOWARDS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0006, 81CW0003","20543-F","10063527/10063711","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","23","39.0 N","9.0 E","N","","","","","415121.0","4162670.0","37.607213","-105.961653","12/01/2022 13:19","https://dwr.state.co.us/Tools/Structures/2005758", +"2005759","83CW001 WELL NO 01S","HOWARDS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0006, 83CW0001","26325-F","10063527/10063711","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","23","39.0 N","9.0 E","N","","","","","415118.0","4162855.0","37.608880","-105.961708","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005759", +"2005760","82CW010 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0010","25378-F","12212676/09212236","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","22","40.0 N","10.0 E","N","","","","","423099.0","4172730.0","37.698580","-105.872335","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005760", +"2005761","W1181 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1181","12943-R","14-10166","HONEYCUTT, JERRY & DAWN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","36","39.0 N","9.0 E","N","","","","","417168.0","4159103.0","37.575253","-105.938060","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005761", +"2005762","81CW170 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0170","25236-F","14-10166","HONEYCUTT, JERRY & DAWN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","36","39.0 N","9.0 E","N","","","","","417580.0","4159412.0","37.578075","-105.933430","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005762", +"2005763","W0182 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0182","13364-F","24-02949-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","21","39.0 N","9.0 E","N","","","","","412360.0","4163873.0","37.617796","-105.993073","01/27/2004 10:07","https://dwr.state.co.us/Tools/Structures/2005763", +"2005764","81CW180 WELL NO 02","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0180","26680-F","24-02949-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","21","39.0 N","9.0 E","N","","","","","412730.0","4163461.0","37.614118","-105.988832","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005764", +"2005765","81CW180 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0180","26681-F","24-02949-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","21","39.0 N","9.0 E","N","","","","","412629.0","4163571.0","37.615100","-105.989990","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005765", +"2005766","W1537 WELL NO 05","FIELD #64","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1537","9166-F","60603170337, 60603305096","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","20","39.0 N","10.0 E","N","","","","","420843.0","4162605.0","37.607138","-105.896825","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005766", +"2005767","82CW037 WELL NO 05A","FIELD #64","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0037","25306-F","60603170337, 60603305096","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","20","39.0 N","10.0 E","N","","","","","421026.0","4162610.0","37.607199","-105.894753","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005767", +"2005768","82CW037 WELL NO 05AA","FIELD #64","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0037","25307-F","60603170337, 60603305096","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","39.0 N","10.0 E","N","","","","","420650.0","4162604.0","37.607112","-105.899011","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005768", +"2005769","W1537 WELL NO 06","FIELD #63","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1537","9168-F","60603179931, 60901270208","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","20","39.0 N","10.0 E","N","","","","","420847.0","4163411.0","37.614402","-105.896867","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005769", +"2005770","82CW038 WELL NO 06A","FIELD #63","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0038","25308-F","60603179931, 60901270208","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","20","39.0 N","10.0 E","N","","","","","420665.0","4163422.0","37.614486","-105.898930","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005770", +"2005771","82CW038 WELL NO 06AA","FIELD #63","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0038","25309-F","60603179931, 60901270208","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NE","20","39.0 N","10.0 E","N","","","","","421036.0","4163410.0","37.614409","-105.894726","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005771", +"2005772","W3483 WELL NO 01","#14 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3483","17298-F","21-04013-08","BEIRIGER, KYLE M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","30","41.0 N","10.0 E","N","","","","","419096.0","4180013.0","37.763871","-105.918549","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005772", +"2005773","82CW086 WELL NO 01S","15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0086","25359-F","00-8-1978","BEIRIGER, KYLE M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SE","30","41.0 N","10.0 E","N","","","","","419076.0","4180237.0","37.765888","-105.918801","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005773", +"2005774","80CW0081 WELL NO. 1","EAST QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0081","22887-F","","HOLLAND, DAVID","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SW","NW","1","40.0 N","9.0 E","N","","","","","417016.0","4177985.0","37.745408","-105.941929","12/01/2022 13:18","https://dwr.state.co.us/Tools/Structures/2005774", +"2005775","80CW0081 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0081","22888-F","","HOLLAND, DAVID","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","NW","1","40.0 N","9.0 E","N","","","","","417018.0","4178157.0","37.746958","-105.941926","12/01/2022 13:19","https://dwr.state.co.us/Tools/Structures/2005775", +"2005776","80CW124 WELL NO 01","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","21298-F","23-02149-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","30","39.0 N","10.0 E","N","","","","","419214.0","4160937.0","37.591964","-105.915095","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005776", +"2005777","80CW124 WELL NO 02","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","24122-F","23-02149-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","30","39.0 N","10.0 E","N","","","","","419226.0","4161213.0","37.594452","-105.914989","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005777", +"2005778","80CW124 WELL NO 03","FIELD 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","21293-F","05119253/10062799","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","30","39.0 N","10.0 E","N","","","","","418421.0","4161012.0","37.592570","-105.924085","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005778", +"2005779","80CW124 WELL NO 04","FIELD 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0124","24123-F","05119253/10062799","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","30","39.0 N","10.0 E","N","","","","","418417.0","4161201.0","37.594273","-105.924151","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005779", +"2005780","W3568 WELL NO 03S","CHICO 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3568","19326-F, 22558-F","09062721/10060153","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","34","40.0 N","9.0 E","N","","","","","414326.0","4169978.0","37.673000","-105.971516","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005780", +"2005781","W3568 WELL NO 04S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3568","19324-F, 22559-F","10063603/10063637","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","34","40.0 N","9.0 E","N","","","","","413867.0","4169993.0","37.673093","-105.976722","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005781", +"2005782","W3568 WELL NO 05S","CHICO 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3568","22560-F","10062706/09212232","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","34","40.0 N","9.0 E","N","","","","","414301.0","4169203.0","37.666014","-105.971708","07/07/2009 13:27","https://dwr.state.co.us/Tools/Structures/2005782", +"2005784","83CW026 WELL NO 03R","B6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0026","6128-R-R","08061996/08062021","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","9","40.0 N","8.0 E","N","","","","","403219.0","4176439.0","37.730120","-106.098303","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005784", +"2005786","83CW026 WELL NO 05R","B5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0026","6130-R-R","100053/10060117","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","7","40.0 N","8.0 E","N","","","","","399977.0","4176464.0","37.729997","-106.135091","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005786", +"2005787","81CW171 WELL NO 01R","HOME QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0171","1914-R-R","06123273/12062752-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","7","39.0 N","10.0 E","N","","","","","418182.0","4165906.0","37.636655","-105.927339","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005787", +"2005789","83CW085 WELL NO 03R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0085","5936-R-R","06-8-3875","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","19","39.0 N","9.0 E","N","","","","","408699.0","4163511.0","37.614177","-106.034506","01/27/2004 09:56","https://dwr.state.co.us/Tools/Structures/2005789", +"2005791","81CW0006 WELL NO. 10-R","SESSUMS WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0006","1616-R-R","09061323/09061398","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","12","39.0 N","8.0 E","N","","","","","407127.0","4165988.0","37.636342","-106.052629","12/01/2022 13:20","https://dwr.state.co.us/Tools/Structures/2005791", +"2005801","83CW005 WELL NO 02R","8 MILE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0005","10763-R","11061692/09212237","KYFFIN LIVING TRUST; KYFFIN, TYLER P.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","28","40.0 N","7.0 E","N","","","","","392627.0","4171728.0","37.686487","-106.217785","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005801", +"2005803","83CW030 WELL NO 01R","NEVITT 37","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0030","8728-R-R","02060442/07242523","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","25","41.0 N","8.0 E","N","","","","","407314.0","4180444.0","37.766636","-106.052350","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005803", +"2005807","W3511 WELL NO 02A","NW QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW3020, 84CW0019, W3511","25356-F","21-03222-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","24","40.0 N","6.0 E","N","","","","","387792.0","4173420.0","37.701155","-106.272870","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005807", +"2005809","84CW065 WELL NO 32S","CHICO #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0065","25704-F","09062755/06200661, 10061907/10062061","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","13","39.0 N","9.0 E","N","","","","","416687.0","4165015.0","37.628490","-105.944180","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005809", +"2005811","84CW064 WELL NO 33S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0064","25705-F","09062741/01250069, 09062742/012017001506","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON); MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","13","39.0 N","9.0 E","N","","","","","416684.0","4164208.0","37.621217","-105.944122","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005811", +"2005812","W0269 WELL NO 01","FIELD #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0269","12219-R, 12219-R-R","12061173/12061437, 19-03473-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SW","NE","20","39.0 N","9.0 E","N","","","","","410810.0","4163210.0","37.611672","-106.010553","04/07/2020 21:59","https://dwr.state.co.us/Tools/Structures/2005812", +"2005813","84CW025 WELL NO 01A","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0025","27148-F","12061173/12061437, 19-03473-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","20","39.0 N","9.0 E","N","","","","","410945.0","4163510.0","37.614388","-106.009061","04/08/2020 07:31","https://dwr.state.co.us/Tools/Structures/2005813", +"2005814","W0303 WELL NO 03","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0303","10262-R, 10262-R-R","07060371/07060938","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","4","40.0 N","10.0 E","N","","","","","422290.0","4177540.0","37.741861","-105.882025","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005814", +"2005815","84CW063 WELL NO 03A","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0003, 84CW0063","26339-F","12204328","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","4","40.0 N","10.0 E","N","","","","","422301.0","4177383.0","37.740447","-105.881883","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005815", +"2005816","W0893 WELL NO 04","DONNELY MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0893","12646-R","09061964/12061328","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","28","41.0 N","7.0 E","N","","","","","393184.0","4180151.0","37.762454","-106.212706","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005816", +"2005817","84CW012 WELL NO 04A","EAST DONNELY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0012","25346-F","04062004/03241856","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","28","41.0 N","7.0 E","N","","","","","393594.0","4180540.0","37.766007","-106.208109","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005817", +"2005818","W0927 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0033, W0927","2685-F","222243978","CARPENTER, CODY; CARPENTER, CODY & ALIESHA","RGWCD SD1","10/31/2022","10/31/2025","3","20","ALAMOSA","","","","SW","NW","19","40.0 N","9.0 E","N","","","","","408442.0","4172803.0","37.697891","-106.038583","02/06/2026 12:43","https://dwr.state.co.us/Tools/Structures/2005818", +"2005819","84CW010 WELL NO 01A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0033, 84CW0010","22627-F","20-03587-08","CARPENTER, CODY; CARPENTER, CODY & ALIESHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","19","40.0 N","9.0 E","N","","","","","408917.0","4173171.0","37.701254","-106.033242","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005819", +"2005820","W1119 WELL NO 02","FIELD #31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1119","11223-F-R","22-08353-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","27","40.0 N","10.0 E","N","","","","","423034.0","4171139.0","37.684236","-105.872904","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005820", +"2005821","83CW024 WELL NO 02S","FIELD #31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0024","25592-F","22-08353-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","27","40.0 N","10.0 E","N","","","","","423047.0","4170954.0","37.682570","-105.872738","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005821", +"2005823","84CW017 WELL NO 01A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0017","24002-F","06113559/09061371","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","19","40.0 N","9.0 E","N","","","","","408872.0","4172378.0","37.694103","-106.033653","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005823", +"2005824","W1626 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1626","12548-R-R","GP12-3932- PIVOT","BROWN, MARK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","9","39.0 N","10.0 E","N","","","","","422127.0","4166004.0","37.637881","-105.882642","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005824", +"2005825","84CW041 WELL NO 03S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0041","26333-F","GP12-3932- PIVOT","BROWN, MARK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","9","39.0 N","10.0 E","N","","","","","422350.0","4165962.0","37.637521","-105.880110","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005825", +"2005826","W2572 WELL NO 01","COLE'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2572","12926-F","06-6-2084","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","5","39.0 N","10.0 E","N","","","","","420521.0","4167159.0","37.648152","-105.900968","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005826", +"2005827","85CW025 WELL NO 01S","COLE'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0025","24712-F","07-6-1019","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","5","39.0 N","10.0 E","N","","","","","420773.0","4167370.0","37.650076","-105.898135","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005827", +"2005828","W3179 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3179","110-R","04128394/04060855","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","6","40.0 N","7.0 E","N","","","","","389850.0","4177041.0","37.734034","-106.250078","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005828", +"2005829","82CW120 WELL NO 01A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0120","20387-F, 20387-F-R","10061909/10062071","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","6","40.0 N","7.0 E","N","","","","","390230.0","4177401.0","37.737324","-106.245820","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005829", +"2005830","W3213 WELL NO 04","FILED #13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3213","16185-F","19-05233","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","26","40.0 N","9.0 E","N","","","","","416145.0","4171520.0","37.687065","-105.951069","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005830", +"2005831","83CW032 WELL NO 04S","FIELD #13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0032","26233-F","19-05233","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","26","40.0 N","9.0 E","N","","","","","416316.0","4171915.0","37.690641","-105.949175","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005831", +"2005832","W3213 WELL NO 06","FIELD #19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3213","16187-F","21-03221-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","40.0 N","9.0 E","N","","","","","416124.0","4170691.0","37.679592","-105.951212","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005832", +"2005833","83CW032 WELL NO 06SS","FIELD 19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0032","26338-F","22-03022-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","40.0 N","9.0 E","N","","","","","415989.0","4170957.0","37.681977","-105.952773","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005833", +"2005836","W3577 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3577","16734-F","07-8-1550","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","9","39.0 N","10.0 E","N","","","","","421737.0","4166668.0","37.643832","-105.887133","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005836", +"2005837","85CW022 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0022","24708-F","07-8-1550","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","9","39.0 N","10.0 E","N","","","","","421468.0","4166690.0","37.644007","-105.890184","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005837", +"2005838","W1119 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1119","11222-F","07-8-1549, 07-8-1552","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","4","39.0 N","10.0 E","N","","","","","421339.0","4167405.0","37.650440","-105.891723","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005838", +"2005839","85CW022 WELL NO 01S","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0022","24710-F","07-8-1552","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","4","39.0 N","10.0 E","N","","","","","421552.0","4167437.0","37.650746","-105.889312","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005839", +"2005840","W3594 WELL NO 01","#32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3594","20260-F-R, 20260-F-R","10060734/10061035-100202","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","35","40.0 N","9.0 E","N","","","","","415299.0","4169923.0","37.672595","-105.960477","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005840", +"2005841","83CW080 WELL NO 01A","#32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0080","23345-F, 23345-F-R","10060734/10061035-100202","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","35","40.0 N","9.0 E","N","","","","","415287.0","4169717.0","37.670737","-105.960589","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005841", +"2005842","W3594 WELL NO 02","#34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3594","20259-F","10060733/10061040-100187","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","2","39.0 N","9.0 E","N","","","","","415253.0","4168314.0","37.658090","-105.960812","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005842", +"2005843","83CW072 WELL NO 02S","#34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0072","23344-F","10060733/10061040-100187","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","2","39.0 N","9.0 E","N","","","","","415257.0","4168115.0","37.656297","-105.960743","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005843", +"2005844","W3883 WELL NO 03","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, W3883","18617-F","062013004250/08223633","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","40.0 N","10.0 E","N","","","","","420179.0","4174061.0","37.710325","-105.905601","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005844", +"2005845","85CW001 WELL NO 03A","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, 85CW0001","27366-F","062013004250/08223633","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","17","40.0 N","10.0 E","N","","","","","420174.0","4173931.0","37.709153","-105.905643","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005845", +"2005846","W3883 WELL NO 04","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, 22CW0041, 85CW0001, W3883","22546-F","11061510/09060255","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","18","40.0 N","10.0 E","N","","","","","419392.0","4174007.0","37.709770","-105.914522","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005846", +"2005847","85CW001 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, 22CW0041, 85CW0001","27365-F, 27365-F-R","11061510/09060255","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","18","40.0 N","10.0 E","N","","","","","419385.0","4173878.0","37.708607","-105.914587","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005847", +"2005848","W3883 WELL NO 05","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3883","22547-F","01061399/07061175","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","18","40.0 N","10.0 E","N","","","","","418577.0","4173966.0","37.709328","-105.923763","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005848", +"2005849","85CW001 WELL NO 05A","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0001","27364-F","01061399/07061175","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SW","18","40.0 N","10.0 E","N","","","","","418588.0","4173845.0","37.708239","-105.923625","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005849", +"2005850","W3919 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3919","16596-F","07-8-1483, 10190404","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","23","40.0 N","10.0 E","N","","","","","425807.0","4173173.0","37.702796","-105.841665","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005850", +"2005851","84CW133 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0133","42621-F, 42621-F-R","07-8-1483, 10190404","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","23","40.0 N","10.0 E","N","","","","","425645.0","4173033.0","37.701521","-105.843489","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005851", +"2005852","W3919 WELL NO 03","PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3919","22837-F","062018000686/09062015","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","27","40.0 N","10.0 E","N","","","","","424199.0","4171551.0","37.688046","-105.859736","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005852", +"2005853","84CW133 WELL NO 03S","PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0133","26853-F","062018000686/09062015","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","27","40.0 N","10.0 E","N","","","","","424081.0","4171387.0","37.686558","-105.861057","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005853", +"2005855","82CW068 WELL NO 03R","MIDDLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0068","7235-R-R","22-08101-08","CSU - SLV RESEARCH CENTER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","18","40.0 N","8.0 E","N","","","","","399949.0","4174050.0","37.708240","-106.135077","08/20/2015 09:02","https://dwr.state.co.us/Tools/Structures/2005855", +"2005857","82CW202 WELL NO 05R","#7 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0202","9460-F-R","03062366/03062399, 12062569/12062737","TILLMAN, STEVEN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SE","10","39.0 N","9.0 E","N","","","","","414596.0","4165731.0","37.634751","-105.967957","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005857", +"2005859","84CW017 WELL NO 03R","1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0017","970-R-R","07061138/07061183, 23-02150-08","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","30","40.0 N","9.0 E","N","","","","","409691.0","4171557.0","37.686786","-106.024263","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005859", +"2005862","84CW020 WELL NO 01R","REED 1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0020","5976-R-R","06-8-4003","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","7","40.0 N","8.0 E","N","","","","","399957.0","4175667.0","37.722813","-106.135208","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005862", +"2005864","84CW005 WELL NO 06R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0005","16178-R","12-3442-8","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","30","41.0 N","8.0 E","N","","","","","399247.0","4181296.0","37.773461","-106.144044","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005864", +"2005868","82CW073 WELL NO 01R","EAST GJELLUM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0073","150-R-R","03061807/03061823, 16-08869-8","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","SE","NW","5","39.0 N","7.0 E","N","","","","","390979.0","4168472.0","37.656952","-106.235985","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005868", +"2005870","83CW89 WELL NO 13R","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0089","4649-F-R","03061806/03061832","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","4","39.0 N","9.0 E","N","","","","","412810.0","4168350.0","37.658186","-105.988510","09/10/2025 08:38","https://dwr.state.co.us/Tools/Structures/2005870", +"2005876","83CW028 WELL NO 02R","13 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0028","1966-R","01061417/12230528","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","14","40.0 N","8.0 E","N","","","","","405617.0","4174003.0","37.708418","-106.070778","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005876", +"2005884","79CW0081 WELL NO. 1-A","H&H#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0014, 79CW0081, 84CW0066","25207-F","12061209/12061405","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); ROCKWATER LLC (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","39.0 N","7.0 E","N","","","","","394164.0","4166147.0","37.636373","-106.199547","12/01/2022 13:18","https://dwr.state.co.us/Tools/Structures/2005884", +"2005886","82CW073 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0073","151-R-R","03061807/03061823, 16-08869-8","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","NW","NW","NW","5","39.0 N","7.0 E","N","","","","","390579.0","4168740.0","37.659319","-106.240559","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005886", +"2005907","85CW017 WELL NO 03R","13P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0017","12240-R-R","05083021/09060271, 11061511/11061649","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","11","40.0 N","9.0 E","N","","","","","415402.0","4176387.0","37.730859","-105.960061","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005907", +"2005909","85CW067 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0067","24184-F","09060698/09060758","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","27","40.0 N","9.0 E","N","","","","","413727.0","4170898.0","37.681235","-105.978416","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005909", +"2005913","W0321 WELL NO 03","FIELD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0321","9442-F, 9442-F-R","05060241/05060784","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","9","39.0 N","8.0 E","N","","","","","402283.0","4166874.0","37.643824","-106.107640","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005913", +"2005914","86CW018 WELL NO 03A","HARVEST SELECT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","86CW0018","28720-F","19501211","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","NW","9","39.0 N","8.0 E","N","","","","","402497.0","4167203.0","37.646812","-106.105259","07/23/2021 13:37","https://dwr.state.co.us/Tools/Structures/2005914", +"2005916","W3544 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3544","9243-F","10060707/10061048","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","31","40.0 N","10.0 E","N","","","","","418533.0","4169905.0","37.672726","-105.923808","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005916", +"2005918","79CW072 WELL NO 02A","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0072","20806-F","10060707/10061048","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","31","40.0 N","10.0 E","N","","","","","418659.0","4169930.0","37.672962","-105.922382","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005918", +"2005919","79CW072 WELL NO 02S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0072","23706-F","10060707/10061048","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","31","40.0 N","10.0 E","N","","","","","418344.0","4169910.0","37.672754","-105.925951","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005919", +"2005920","85CW053 WELL NO 02S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0053","26331-F","10060707/10061048","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","31","40.0 N","10.0 E","N","","","","","418544.0","4169714.0","37.671005","-105.923662","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005920", +"2005921","85CW053 WELL NO 02A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0053","26332-F","GP11-4797-8","FPI COLORADO LLC (FARMLAND PARTNERS, INC.); KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","31","40.0 N","10.0 E","N","","","","","419349.0","4169722.0","37.671149","-105.914536","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005921", +"2005923","85CW075 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0075","9439-F-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","39.0 N","9.0 E","N","","","","","414331.0","4164267.0","37.621532","-105.970789","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005923", +"2005924","85CW055 WELL NO 10R","FIELD 4N CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0055","1458-R-R","03062373/03062398","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","24","40.0 N","8.0 E","N","","","","","407238.0","4173175.0","37.701122","-106.052286","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005924", +"2005926","W0714 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0033, W0714","13071-F, 15236-F","07061152/07061180","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","11","40.0 N","9.0 E","N","","","","","415385.0","4175580.0","37.723584","-105.960160","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005926", +"2005927","85CW19 WELL NO 7A","ALPINE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0033, 85CW0019, 86CW0038","28728-F, 88794-F","4333749","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SE","SW","11","40.0 N","9.0 E","N","","","","","415702.0","4175255.0","37.720685","-105.956525","10/04/2024 16:23","https://dwr.state.co.us/Tools/Structures/2005927", +"2005930","85CW077 WELL NO 01A","B1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0077","21578-F","100925/052013003808","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","31","41.0 N","8.0 E","N","","","","","399173.0","4178897.0","37.751834","-106.144551","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005930", +"2005931","W3325 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","19CW0002, 20CW0001, W3325, W3847","16941-F","24-02883-08","SEGER, MATHEW","RGWCD SD1","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","18","40.0 N","7.0 E","N","","","","","389401.0","4174193.0","37.708316","-106.254739","02/18/2011 14:11","https://dwr.state.co.us/Tools/Structures/2005931", +"2005932","W3325 WELL NO 02","MIDDLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0001, W3325, W3847","16940-F","GP12-0489-8","SEGER, GARY V.","RGWCD SD1","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","13","40.0 N","6.0 E","N","","","","","388599.0","4174209.0","37.708363","-106.263838","02/18/2011 14:11","https://dwr.state.co.us/Tools/Structures/2005932", +"2005935","82CW194 WELL NO 1AA","LS WELL AT PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0194","22071-F","06-8-3917","BURRIS, JAKE; ERIC L ELLITHORPE IRREVOCABLE TRUST NO 1 (ELLITHORPE, JEDEDIAH V.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","25","40.0 N","7.0 E","N","","","","","398290.0","4171653.2","37.686457","-106.153560","01/26/2016 16:18","https://dwr.state.co.us/Tools/Structures/2005935", +"2005936","82CW194 WELL NO 06A","DADS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0024, 82CW0194","22069-F, 86841-F","10060720/10061051","KLECKER RANCH, INC.; PB BOND HERITAGE, LLC (KLECKER, PAMELA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","12","39.0 N","7.0 E","N","","","","","398201.0","4166902.0","37.643633","-106.153906","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005936", +"2005937","82CW194 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0194","24684-F","11061433/10060088","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","5","39.0 N","7.0 E","N","","","","","391762.0","4168512.0","37.657405","-106.227116","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005937", +"2005941","W3676 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3676","20462-F","GP11-4797-8","FPI COLORADO LLC (FARMLAND PARTNERS, INC.); KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","31","40.0 N","10.0 E","N","","","","","419347.0","4169918.0","37.672915","-105.914580","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005941", +"2005947","86CW020 WELL NO 03AA","NORTHSTOCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","86CW0020","28981-F","20418254","HIGH MOUNTAIN PROCESSING PROPERTIES (HEFNER, CORBETT)","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","9","39.0 N","8.0 E","N","","","","","402506.0","4166492.0","37.640405","-106.105062","01/17/2024 15:58","https://dwr.state.co.us/Tools/Structures/2005947", +"2005948","87CW0002 NO 3A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0002","22828-F","11060540/11060639","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","3","39.0 N","7.0 E","N","","","","","394229.0","4168523.0","37.657792","-106.199154","11/14/2023 13:06","https://dwr.state.co.us/Tools/Structures/2005948", +"2005949","W0934 WELL NO 03","MEADOWS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0934","2887-F","11060540/11060639","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","3","39.0 N","7.0 E","N","","","","","393801.0","4168426.0","37.656868","-106.203992","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005949", +"2005950","W0501 WELL NO 05","QTR. 23, PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0055, 85CW0040, W0501","9457-F","","KRUSE, MICHAEL; KRUSE, MICHAEL & BARBARA","RGWCD SD1","10/31/2009","10/31/2016","3","20","ALAMOSA","","","","SW","SW","24","39.0 N","9.0 E","N","","","","","416761.0","4162636.0","37.607057","-105.943070","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005950", +"2005951","82CW131 WELL NO 05SS","QTR 23 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0131","30578-F","","KRUSE, MICHAEL; KRUSE, MICHAEL & BARBARA","RGWCD SD1","10/31/2009","10/31/2016","3","20","ALAMOSA","","","SW","NW","SW","24","39.0 N","9.0 E","N","","","","","416827.0","4162839.0","37.608892","-105.942346","10/24/2008 14:47","https://dwr.state.co.us/Tools/Structures/2005951", +"2005952","W0501 WELL NO 06","QTR 21, PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0040, W0501","9458-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","NW","24","39.0 N","9.0 E","N","","","","","416850.0","4163441.0","37.614320","-105.942154","09/11/2023 16:55","https://dwr.state.co.us/Tools/Structures/2005952", +"2005953","85CW040 WELL NO 06S","QTR 21, PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0040","26237-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SE","NW","24","39.0 N","9.0 E","N","","","","","416846.0","4163330.0","37.613319","-105.942187","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005953", +"2005954","85CW040 WELL NO 06SS","QTR 21, PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0040","28282-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","NW","24","39.0 N","9.0 E","N","","","","","416852.0","4163626.0","37.615987","-105.942152","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005954", +"2005955","85CW040 WELL NO 05S","C3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0040","28283-F","","KRUSE, MICHAEL; KRUSE, MICHAEL & BARBARA","RGWCD SD1","10/31/2009","10/31/2016","3","20","ALAMOSA","","","SE","SW","SW","24","39.0 N","9.0 E","N","","","","","416817.0","4162471.0","37.605575","-105.942417","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005955", +"2006003","W0501 WELL NO 03","QTR 22 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0004, W0501","5480-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","NE","24","39.0 N","9.0 E","N","","","","","417646.0","4163441.0","37.614391","-105.933136","09/13/2023 12:16","https://dwr.state.co.us/Tools/Structures/2006003", +"2006005","82CW131 WELL NO 04S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0131","25758-F","","KRUSE, BARBARA; KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SE","24","39.0 N","9.0 E","N","","","","","417626.0","4162834.0","37.608919","-105.933294","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006005", +"2006007","W3676 WELL NO 01","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0041, W3676","21023-F","10062707/10062880","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","29","40.0 N","10.0 E","N","","","","","420165.0","4170724.0","37.680250","-105.905394","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006007", +"2006008","86CW015 WELL NO 01S","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0041, 86CW0015","28144-F","10062707/10062880","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","29","40.0 N","10.0 E","N","","","","","419969.0","4170745.0","37.680422","-105.907618","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006008", +"2006009","86CW015 WELL NO 07R","#7 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","86CW0015","14112-R-R","07-8-1084","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","30","40.0 N","10.0 E","N","","","","","418951.0","4170375.0","37.676999","-105.919121","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006009", +"2006011","87CW023 WELL NO 01A","6 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0023","24665-F","03063666","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","3","39.0 N","8.0 E","N","","","","","404754.0","4168413.0","37.657953","-106.079837","10/24/1997 00:00","https://dwr.state.co.us/Tools/Structures/2006011", +"2006013","81CW102 WELL NO 01","BIGELOW 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0102","25180-F","12061294/12061312","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","26","41.0 N","9.0 E","N","","","","","416245.0","4180405.0","37.767147","-105.950958","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006013", +"2006014","87CW022 WELL NO 01S","BIGELOW 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0022","27773-F","12061294/12061312","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","SW","SE","26","41.0 N","9.0 E","N","","","","","416233.0","4180203.0","37.765325","-105.951071","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006014", +"2006016","W3913 WELL NO 01A","#8, FKA 2014234","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0014, 07CW0041, W3913","22580-F, 22580-F-R","10062707/10062880","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","29","40.0 N","10.0 E","N","","","","","420159.0","4170653.0","37.679610","-105.905454","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2006016", +"2006017","81CW105 WELL NO 01","BIGELOW 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0105","23906-F, 23906-F-R","12061246/09212228","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","25","41.0 N","9.0 E","N","","","","","417869.0","4181198.0","37.774441","-105.932612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006017", +"2006018","87CW021 WELL NO 01S","BIGELOW 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0021","27774-F","12061246/09212228","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NE","25","41.0 N","9.0 E","N","","","","","417871.0","4181397.0","37.776234","-105.932611","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006018", +"2006020","82CW063 WELL NO 454F","SHALLOW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0063","454-R, 454-R-R","07-6-1006","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","23","40.0 N","10.0 E","N","","","","","424642.0","4172296.0","37.694797","-105.854789","02/07/2011 11:59","https://dwr.state.co.us/Tools/Structures/2006020", +"2006021","82CW063 WELL NO 3274F","DEEP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0063","3274-F","07-12-1010","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","23","40.0 N","10.0 E","N","","","","","424651.0","4172376.0","37.695518","-105.854695","03/06/2009 10:15","https://dwr.state.co.us/Tools/Structures/2006021", +"2006023","87CW031 WELL NO 03R","JORDAN WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0031","408-R-R, 408-R-R","03063656/03063695","KEVIN HANSON FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","20","40.0 N","8.0 E","N","","","","","400742.0","4173243.0","37.701054","-106.125972","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006023", +"2006026","85CW016 WELL NO 01","FIELD F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0016","25010-F, 25010-F-R","09060206/09060267","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","3","40.0 N","9.0 E","N","","","","","414597.0","4177971.0","37.745059","-105.969381","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006026", +"2006027","85CW071 WELL NO 01A","FIELD F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0071","30575-F, 30575-F-R","09060206/09060267","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","3","40.0 N","9.0 E","N","","","","","414827.0","4177977.0","37.745135","-105.966771","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006027", +"2006028","85CW016 WELL NO 02","FIELD E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0016","25011-F","10062765/10062802","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","3","40.0 N","9.0 E","N","","","","","414601.0","4177209.0","37.738192","-105.969246","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006028", +"2006029","85CW071 WELL NO 02A","FIELD E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0071","30577-F","10062765/10062802","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","SE","3","40.0 N","9.0 E","N","","","","","414777.0","4177202.0","37.738146","-105.967248","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006029", +"2006030","85CW016 WELL NO 04","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0016","25013-F","08223649/07061163","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","11","40.0 N","9.0 E","N","","","","","416179.0","4176376.0","37.730831","-105.951243","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006030", +"2006031","85CW071 WELL NO 04A","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0071","30574-F","08223649/07061163","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","11","40.0 N","9.0 E","N","","","","","415972.0","4176373.0","37.730785","-105.953591","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006031", +"2006032","85CW071 WELL NO 03S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0071","30573-F","05083021/09060271, 11061511/11061649","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","11","40.0 N","9.0 E","N","","","","","415215.0","4176389.0","37.730859","-105.962183","03/03/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006032", +"2006152","07CW0035 WELL NO 02RR","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0035, W0156","13464-F","09061284/09061394","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","11","40.0 N","10.0 E","N","","","","","425465.0","4176014.0","37.728372","-105.845836","11/13/2023 16:14","https://dwr.state.co.us/Tools/Structures/2006152", +"2006153","85CW042 WELL NO 02A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0042","24416-F, 29849-F","","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","","NE","NW","12","40.0 N","10.0 E","N","","","","","426649.0","4176402.0","37.731964","-105.832440","03/02/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006153", +"2006176","W0756 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0756","12621-R","10063625/10063645","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2003","10/31/2025","3","20","SAGUACHE","","","","SE","NW","25","41.0 N","7.0 E","N","","","","","398035.0","4180923.0","37.769965","-106.157751","02/28/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006176", +"2006177","W0756 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0756","22130-F","10063630/10063647","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","25","41.0 N","7.0 E","N","","","","","397242.0","4180915.0","37.769804","-106.166752","02/28/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006177", +"2006178","87CW046 WELL NO 01A","E BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0046","33631-F, 33631-F-R","10063625/10063645","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","25","41.0 N","7.0 E","N","","","","","398432.0","4181303.0","37.773433","-106.153297","03/02/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006178", +"2006179","87CW046 WELL NO 02A","W. BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0046","33632-F","10063630/10063647","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","25","41.0 N","7.0 E","N","","","","","397638.0","4181303.0","37.773345","-106.162311","03/02/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006179", +"2006218","81CW041 WELL NO 01","#10 VALLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0017, 81CW0041, 88CW0012","27638-F","10071481","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","40.0 N","9.0 E","N","","","","","411334.0","4174789.0","37.716073","-106.006025","03/02/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006218", +"2006224","20CW0014 WELL NO. 1-AS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0014","86378-F","24-02775-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); ROCKWATER LLC (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","39.0 N","7.0 E","N","","","","","393942.0","4166502.0","37.639546","-106.202114","07/16/2024 10:56","https://dwr.state.co.us/Tools/Structures/2006224", +"2006235","88CW025 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","88CW0025","24064-F","10063543/08223632","KELLER, STEVEN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","15","39.0 N","7.0 E","N","","","","","395004.0","4164598.0","37.622510","-106.189806","02/17/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006235", +"2006248","88CW032 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","88CW0032","22917-F, 22917-F-R","09061949/04061505","MASON FAMILY HOLDINGS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","25","40.0 N","10.0 E","N","","","","","426614.0","4170791.0","37.681393","-105.832272","08/24/1989 00:00","https://dwr.state.co.us/Tools/Structures/2006248", +"2006251","81CW103 WELL NO 01","BIGELOW 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0103","23907-F","18230559/062019000984","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","35","41.0 N","9.0 E","N","","","","","416209.0","4178788.0","37.752571","-105.951180","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006251", +"2006252","88CW029 WELL NO 01SS","BIGELOW 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","88CW0029","28143-F","18230559/062019000984","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","35","41.0 N","9.0 E","N","","","","","416215.0","4178983.0","37.754329","-105.951135","10/25/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006252", +"2006253","81CW122 WELL NO 01","BIGELOW 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","24CW0004, 81CW0122","25182-F, 25182-F-R, 90447-F","12061290/12061306","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","25","41.0 N","9.0 E","N","","","","","417877.0","4180385.0","37.767114","-105.932429","01/29/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006253", +"2006254","88CW029 WELL NO 01S","BIGELOW 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","24CW0004, 88CW0029","28230-F, 90446-F","12061290/12061306","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","SW","SE","25","41.0 N","9.0 E","N","","","","","417870.0","4180181.0","37.765275","-105.932485","01/29/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006254", +"2006262","W0099 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0001, W0099","8564-R","19852803","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","39.0 N","8.0 E","N","","","","","407517.0","4165547.0","37.632407","-106.048154","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006262", +"2006263","79CW006 WELL NO 09A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0006","23572-F","22-04597-08, GP07-08-1559","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","13","39.0 N","8.0 E","N","","","","","407890.0","4165138.0","37.628759","-106.043876","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006263", +"2006264","W1000 WELL NO 04","#23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, 23CW0016, W1000","497-R, 89774-F","11061710/052018001069","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","9","39.0 N","9.0 E","N","","","","","411570.0","4165958.0","37.636510","-106.002276","10/21/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006264", +"2006266","79CW013 WELL NO 01A","PAULSON PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0013","23943-F","03063675","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); SCHRECK, MICHAEL L. AND SHARON K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","25","41.0 N","7.0 E","N","","","","","397622.0","4180492.0","37.766035","-106.162379","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006266", +"2006270","79CW28 NO 1-A","KEHLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0028","22873-F","03062371/03062403","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","6","39.0 N","8.0 E","N","","","","","399896.0","4168448.0","37.657751","-106.134908","08/27/2018 16:11","https://dwr.state.co.us/Tools/Structures/2006270", +"2006272","79CW030 WELL NO 06A","SHRECK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0030","23998-F","03063647/03063929","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","7","40.0 N","8.0 E","N","","","","","399164.0","4175679.0","37.722834","-106.144206","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006272", +"2006274","79CW030 WELL NO 09A","10N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0027, 79CW0030","23996-F","09061302/09061391","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","40.0 N","7.0 E","N","","","","","397539.0","4175687.0","37.722726","-106.162643","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006274", +"2006275","W1041 WELL NO 10","FFA/ MINI FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1041","6601-R","18-06362-06","CENTER & RIO GRANDE CONSERVATION DISTRICTS; FREEL, MATTEA","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","13","40.0 N","7.0 E","N","","","","","397943.0","4174649.0","37.713417","-106.157914","12/21/2018 09:54","https://dwr.state.co.us/Tools/Structures/2006275", +"2006276","79CW030 WELL NO 10A","S10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0030","23997-F","09061295/09061407","CENTER & RIO GRANDE CONSERVATION DISTRICTS; FREEL, MATTEA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","13","40.0 N","7.0 E","N","","","","","398328.0","4174870.0","37.715451","-106.153578","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006276", +"2006278","79CW035 WELL NO 01A","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0035","22606-F","10062701/062017001239","CARPENTER, CODY; CARPENTER, KENNETH L.; DAVIS, ELBERT G.; KC FARMS (CARPENTER, KEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","1","40.0 N","8.0 E","N","","","","","407304.0","4177209.0","37.737482","-106.052051","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006278", +"2006280","79CW058 WELL NO 04A","N. TOLL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0058","23455-F","100895/12061376","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","18","40.0 N","9.0 E","N","","","","","408902.0","4174797.0","37.715906","-106.033615","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006280", +"2006281","W0469 WELL NO 04","SHEDS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0469","12221-R, 12221-R-R","11061392/11061655","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","29","40.0 N","8.0 E","N","","","","","400318.0","4170978.0","37.680597","-106.130471","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006281", +"2006282","79CW059 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0059","22601-F","11061392/11061655","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","29","40.0 N","8.0 E","N","","","","","400724.0","4170830.0","37.679307","-106.125847","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006282", +"2006283","79CW72 WELL NO W3676 2S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0072","23705-F","GP11-4797-8","FPI COLORADO LLC (FARMLAND PARTNERS, INC.); KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","31","40.0 N","10.0 E","N","","","","","419180.0","4170028.0","37.673892","-105.916486","09/25/2025 09:44","https://dwr.state.co.us/Tools/Structures/2006283", +"2006284","W0414 WELL NO 03","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0414","6808-F","24-00722-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","29","41.0 N","9.0 E","N","","","","","410175.0","4180826.0","37.770364","-106.019919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006284", +"2006285","79CW077 WELL NO 03A","RESS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0077","17975-F","24-00722-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","29","41.0 N","9.0 E","N","","","","","410572.0","4181205.0","37.773819","-106.015459","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006285", +"2006286","W0316 WELL NO 11","SESSUMS EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0316","1617-R","20-02691-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","12","39.0 N","8.0 E","N","","","","","407533.0","4166129.0","37.637654","-106.048046","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006286", +"2006287","79CW082 WELL NO 11A","SESSUMS EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0082","23823-F","20-02691-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","12","39.0 N","8.0 E","N","","","","","407915.0","4165953.0","37.636106","-106.043695","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006287", +"2006290","W3776 WELL NO 01","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3776","22476-F","10060739/10061046","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","30","40.0 N","10.0 E","N","","","","","418997.0","4171150.0","37.683987","-105.918685","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006290", +"2006291","80CW002 WELL NO 01A","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0002","24419-F, 24419-F-R","10060739/10061046","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","30","40.0 N","10.0 E","N","","","","","419371.0","4171482.0","37.687012","-105.914481","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006291", +"2006292","W0867 WELL NO 01","MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW3004, 21CW0035, W0867","16412-R, 46815-F","09060228/09060254","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","10","40.0 N","9.0 E","N","","","","","414196.0","4176003.0","37.727286","-105.973700","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006292", +"2006293","80CW003 WELL NO 01S/02S","#6A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0003","22561-F","07061130/07061161, 07061142/07061182","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","NE","10","40.0 N","9.0 E","N","","","","","414476.0","4176009.0","37.727366","-105.970523","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006293", +"2006294","W0867 WELL NO 02","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0867","5662-F","07061130/07061161, 07061142/07061182","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","10","40.0 N","9.0 E","N","","","","","414262.0","4176003.0","37.727292","-105.972951","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006294", +"2006299","W0493 WELL NO 05","MS2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0493","12777-R","10060683/10061077","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","27","39.0 N","9.0 E","N","","","","","413105.0","4162215.0","37.602924","-105.984436","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006299", +"2006300","W0493 WELL NO 04","MS2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0493","15778-F","10060694/10061075","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","27","39.0 N","9.0 E","N","","","","","413486.0","4161866.0","37.599815","-105.980079","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006300", +"2006301","W0675 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","6400-R","GP12-3312-8","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","22","40.0 N","7.0 E","N","","","","","394675.0","4172512.0","37.693790","-106.194675","04/26/2013 14:55","https://dwr.state.co.us/Tools/Structures/2006301", +"2006305","W0822 WELL NO 10","16 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0822","16058-F","06-8-2769","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","30","40.0 N","8.0 E","N","","","","","399110.0","4171650.0","37.686520","-106.144261","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006305", +"2006309","W0993 WELL NO 01A","FIELD #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0993","16016-F, 58287-F","12062594/12062704","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","33","40.0 N","7.0 E","N","","","","","393400.0","4170128.0","37.672159","-106.208786","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006309", +"2006310","W1461 WELL NO 01","FIELD #22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1461","13909-F","146030229, 24-05612-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","1","39.0 N","9.0 E","N","","","","","417690.0","4167526.0","37.651210","-105.933097","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006310", +"2006311","W1461 WELL NO 01A","FIELD #22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1461","19561-F, 17328-F, 38358-F","146030229, 24-05612-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","1","39.0 N","9.0 E","N","","","","","417674.0","4167691.0","37.652696","-105.933297","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006311", +"2006312","W1461 WELL NO 05","FIELD #23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1461","9274-F","16-09493, 20-04309","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","12","39.0 N","9.0 E","N","","","","","417670.0","4165896.0","37.636519","-105.933140","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006312", +"2006313","W1461 WELL NO 05A","FIELD #23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1461","17329-F, 19562-F","16-09493, 20-04309","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","12","39.0 N","9.0 E","N","","","","","417672.0","4165804.0","37.635690","-105.933107","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006313", +"2006314","W1681 WELL NO 05","FIELD #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","19428-F-R","17-05926-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","15","40.0 N","9.0 E","N","","","","","413781.0","4174771.0","37.716144","-105.978262","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006314", +"2006315","W1681 WELL NO 09","FIELD #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","18055-F, 18055-F-R, 18055-F-R","17-05926-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","15","40.0 N","9.0 E","N","","","","","413793.0","4174953.0","37.717785","-105.978148","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006315", +"2006319","W1793 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1793","16125-F","23-02326-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","18","39.0 N","9.0 E","N","","","","","408318.0","4164937.0","37.626990","-106.039001","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006319", +"2006320","W1793 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1793","10661-R","23-02326-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","18","39.0 N","9.0 E","N","","","","","408711.0","4165132.0","37.628787","-106.034572","02/07/1996 00:00","https://dwr.state.co.us/Tools/Structures/2006320", +"2006325","2008CW20 WELL NO 6-R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0020, W1891","10453-F-R, 10453-F-R, 10453-F-R","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2016","3","20","ALAMOSA","","","SW","NE","SW","6","38.0 N","10.0 E","N","","","","","418390.0","4157808.0","37.563691","-105.924079","09/13/2023 11:53","https://dwr.state.co.us/Tools/Structures/2006325", +"2006326","W1891 WELL NO 05","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0020, W1891","15305-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2016","3","20","ALAMOSA","","","","NW","SW","6","38.0 N","10.0 E","N","","","","","418216.0","4157885.0","37.564370","-105.926057","09/13/2023 11:53","https://dwr.state.co.us/Tools/Structures/2006326", +"2006327","W1891 WELL NO 08","#6-PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1891","10129-F-R","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","","NE","SE","6","38.0 N","10.0 E","N","","","","","419182.0","4157798.0","37.563671","-105.915111","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006327", +"2006328","W1891 WELL NO 07","#6-NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15303-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","NW","NE","SE","6","38.0 N","10.0 E","N","","","","","419190.0","4157988.0","37.565384","-105.915041","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006328", +"2006329","W1891 WELL NO 10","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0020, W1891","9552-F","11061464/11061674","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","8","38.0 N","10.0 E","N","","","","","419818.0","4156989.0","37.556435","-105.907822","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006329", +"2006330","W1891 WELL NO 09","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15309-F","11061464/11061674","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","8","38.0 N","10.0 E","N","","","","","419833.0","4157175.0","37.558113","-105.907672","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006330", +"2006331","W1891 WELL NO 12","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0020, W1891","9551-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","SW","NE","NE","8","38.0 N","10.0 E","N","","","","","420625.0","4156978.0","37.556406","-105.898685","09/13/2023 12:24","https://dwr.state.co.us/Tools/Structures/2006331", +"2006332","W1891 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15310-F, 15310-F-R","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","NW","NE","NE","8","38.0 N","10.0 E","N","","","","","420630.0","4157178.0","37.558209","-105.898650","09/13/2023 12:25","https://dwr.state.co.us/Tools/Structures/2006332", +"2006333","W1891 WELL NO 14","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0020, W1891","9549-F","11061455/11061665","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","5","38.0 N","10.0 E","N","","","","","420412.0","4157812.0","37.563904","-105.901187","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006333", +"2006334","W1891 WELL NO 13","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15308-F","11061455/11061665","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","5","38.0 N","10.0 E","N","","","","","420593.0","4157802.0","37.563830","-105.899136","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006334", +"2006335","W1891 WELL NO 16","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1891","10117-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","SW","NE","NW","5","38.0 N","10.0 E","N","","","","","420002.0","4158600.0","37.570970","-105.905915","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006335", +"2006336","W1891 WELL NO 15","FIELD #21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15306-F, 15306-F-R","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","NW","5","38.0 N","10.0 E","N","","","","","419807.0","4158590.0","37.570863","-105.908122","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006336", +"2006337","W1891 WELL NO 18","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0020, W1891","10118-F","02082202/02082226","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NE","5","38.0 N","10.0 E","N","","","","","420800.0","4158602.0","37.571057","-105.896879","08/13/2013 16:13","https://dwr.state.co.us/Tools/Structures/2006337", +"2006338","W1891 WELL NO 17","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1891","15307-F","02082202/02082226","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","5","38.0 N","10.0 E","N","","","","","420595.0","4158604.0","37.571058","-105.899201","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006338", +"2006339","W1891 WELL NO 20","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1891","9550-F","15-11638-8","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","SW","5","38.0 N","10.0 E","N","","","","","419984.0","4157801.0","37.563768","-105.906031","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006339", +"2006342","W2557 WELL NO 01","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3024, 19CW0004, W2557","10189-R","10061977, 20-03857-06","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","28","39.0 N","9.0 E","N","","","","","411530.0","4161677.0","37.597926","-106.002211","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006342", +"2006344","W2557 WELL NO 04","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW3024, 19CW0004, W2557","16055-F, 16055-F-R","10061935/10062052","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","28","39.0 N","9.0 E","N","","","","","412395.0","4161783.0","37.598964","-105.992427","02/26/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006344", +"2006345","14CW3024 WELL NO 02-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","14CW3024, 19CW0004, W2557","10190-R, 10190-R-R, 10190-R-R","05119258/05119270","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","29","39.0 N","9.0 E","N","","","","","410741.0","4162143.0","37.602049","-106.011205","09/23/2020 16:12","https://dwr.state.co.us/Tools/Structures/2006345", +"2006346","W2557 WELL NO 05","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW3024, 19CW0004, W2557","15443-F","05119258/05119270","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","29","39.0 N","9.0 E","N","","","","","411099.0","4161884.0","37.599750","-106.007118","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006346", +"2006347","W2557 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW3024, 19CW0004, W2557","15444-F","23-02652-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","21","39.0 N","9.0 E","N","","","","","411928.0","4162685.0","37.607048","-105.997825","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006347", +"2006349","W3217 WELL NO 01A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3217","17762-F, 17762-F-R","04060162/04060122","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","29","40.0 N","7.0 E","N","","","","","391801.0","4171751.0","37.686597","-106.227154","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006349", +"2006350","W0223 WELL NO 04","CORNER #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0223","6142-R","","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2014","3","20","RIO GRANDE","","","","SE","NW","27","40.0 N","7.0 E","N","","","","","394649.0","4171552.0","37.685136","-106.194831","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006350", +"2006351","W3217 WELL NO 04A","CENTER #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3217","17761-F","03061803/05083200-1560433","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","27","40.0 N","7.0 E","N","","","","","395055.0","4171694.0","37.686462","-106.190248","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006351", +"2006353","W3330 WELL NO PUMP 03","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3330","17723-F","03063648/03063694","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","8","40.0 N","9.0 E","N","","","","","410551.0","4176408.0","37.730587","-106.015106","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006353", +"2006354","W0411 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0411","12889-R","05060238/05060261","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","27","40.0 N","7.0 E","N","","","","","395457.0","4171252.0","37.682525","-106.185626","08/04/2015 14:57","https://dwr.state.co.us/Tools/Structures/2006354", +"2006355","W3333 WELL NO 01A","M7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3333","17974-F","05060238/05060261","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","26","40.0 N","7.0 E","N","","","","","395853.0","4170877.0","37.679190","-106.181083","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006355", +"2006356","W0555 WELL NO 02","SUB STATION CORNER PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0043, W0555","5957-R","05119255/101262","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2011","10/31/2025","3","20","SAGUACHE","","","SE","SW","NE","28","41.0 N","7.0 E","N","","","","","393218.0","4181076.0","37.770794","-106.212456","08/14/2013 15:28","https://dwr.state.co.us/Tools/Structures/2006356", +"2006358","W3338 WELL NO PUMP 06A","SOUTH HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3338","19153-F","21-00641-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NE","28","41.0 N","8.0 E","N","","","","","403228.0","4181281.0","37.773756","-106.098846","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006358", +"2006359","W0439 WELL NO 02","#1/MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0439","10800-R","10242146/052014002159, 14-09409-6","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","30","41.0 N","9.0 E","N","","","","","409356.0","4180052.0","37.763308","-106.029120","12/05/2007 10:13","https://dwr.state.co.us/Tools/Structures/2006359", +"2006360","W3340 WELL NO 02A","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3340","17976-F","10242146/052014002159","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","30","41.0 N","9.0 E","N","","","","","409744.0","4180401.0","37.766492","-106.024759","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006360", +"2006362","W3357 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3357","17719-F","05060750/05060777","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","10","40.0 N","8.0 E","N","","","","","404843.0","4176405.0","37.729984","-106.079872","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006362", +"2006364","W3369 WELL NO 03A","STOEBER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3369","18056-F","12062628/12062644","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","10","39.0 N","7.0 E","N","","","","","394988.0","4166974.0","37.643920","-106.190328","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006364", +"2006365","W1903 WELL NO 01","FIELD #21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1903","6449-F","18-11221, 21-00545","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","1","39.0 N","9.0 E","N","","","","","417690.0","4168325.0","37.658411","-105.933188","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006365", +"2006366","W3373 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3373","19150-F","18-11221, 21-00545","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","1","39.0 N","9.0 E","N","","","","","417688.0","4168147.0","37.656807","-105.933190","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006366", +"2006367","W1340 WELL NO 03","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0039, W1340","14081-R, 14081-R-R","02061565/02061590","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","27","40.0 N","7.0 E","N","","","","","395463.0","4171563.0","37.685328","-106.185603","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006367", +"2006368","W3381 WELL NO 03A","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3381","18252-F","02061565/02061590","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","26","40.0 N","7.0 E","N","","","","","395860.0","4171676.0","37.686391","-106.181117","02/07/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006368", +"2006369","W0404 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0404","11251-R","09062788/10060073","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","36","40.0 N","7.0 E","N","","","","","397055.0","4169247.0","37.664637","-106.167224","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006369", +"2006370","W3376 WELL NO 02","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3376","18991-F","09062788/10060073","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","36","40.0 N","7.0 E","N","","","","","397451.0","4169251.0","37.664718","-106.162735","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006370", +"2006372","W3391 WELL NO 09A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3391","21022-F","07060374/07060931","ENCE, MYRNA; HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","21","40.0 N","7.0 E","N","","","","","393453.0","4172527.0","37.693783","-106.208536","04/13/2020 12:28","https://dwr.state.co.us/Tools/Structures/2006372", +"2006373","W0442 WELL NO 06","PERRIN 2 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","387-R","07-10-1011","PERRIN JR, THOMAS W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","27","41.0 N","8.0 E","N","","","","","403638.0","4180192.0","37.763985","-106.094047","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006373", +"2006374","W3400 WELL NO 06A","PERRIN 2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3400","18913-F","09061283/09061383","MYERS FARMS LLC; PERRIN JR, THOMAS W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","27","41.0 N","8.0 E","N","","","","","404041.0","4180467.0","37.766506","-106.089508","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006374", +"2006375","W0663 WELL NO 1","SOUTH FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0663","12394-R, 12394-R-R","07060379/07060916","MILLER, H. CLAYTON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","33","40.0 N","7.0 E","N","","","","","392210.0","4169029.0","37.662116","-106.222114","08/20/2018 14:42","https://dwr.state.co.us/Tools/Structures/2006375", +"2006376","W3411 WELL NO 01","SOUTH FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3411","16806-F","07060379/07060916","MILLER, H. CLAYTON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","33","40.0 N","7.0 E","N","","","","","392583.0","4169319.0","37.664774","-106.217929","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006376", +"2006377","W0330 WELL NO 01","EAST HOME CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0330","13480-R, 13480-R-R","12062626/12062712","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2024","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","35","40.0 N","7.0 E","N","","","","","396239.0","4169613.0","37.667844","-106.176526","06/03/2024 11:36","https://dwr.state.co.us/Tools/Structures/2006377", +"2006378","W3422 WELL NO 01","#1 NORTH OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0297","13646-R","06-8-4044","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","14","39.0 N","8.0 E","N","","","","","405064.0","4164283.0","37.620766","-106.075786","01/22/2009 16:40","https://dwr.state.co.us/Tools/Structures/2006378", +"2006379","W3417 WELL NO 01","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3417","18914-F","02060456/10190361","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","14","39.0 N","8.0 E","N","","","","","405463.0","4164380.0","37.621681","-106.071278","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006379", +"2006380","10CW0039 WELL NO 01","K5-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0039, W0790","5465-F, 76954-F","17-11510-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","21","40.0 N","8.0 E","N","","","","","402844.0","4173368.0","37.702406","-106.102148","10/24/2012 16:15","https://dwr.state.co.us/Tools/Structures/2006380", +"2006382","W3445 WELL NO 01A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3445","19151-F","09061313/09061362","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","12","40.0 N","7.0 E","N","","","","","397552.0","4176483.0","37.729900","-106.162608","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006382", +"2006383","W0720 WELL NO 01","MINOR STRATON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","974-R","10061894/10062063, 12212602-08223641","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","3","39.0 N","7.0 E","N","","","","","394594.0","4168042.0","37.653499","-106.194948","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006383", +"2006384","W3449 WELL NO 01A","MINOR STRATON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3449","19919-F","10061894/10062063, 12212602-08223641","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","3","39.0 N","7.0 E","N","","","","","394986.0","4167774.0","37.651129","-106.190466","02/07/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006384", +"2006385","W0720 WELL NO 10","BIESAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","16369-R","10063573/10063670-100517","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","1","39.0 N","7.0 E","N","","","","","397821.0","4168051.0","37.653945","-106.158373","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006385", +"2006386","W3450 WELL NO 02A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3450","17004-F","10063573/10063670-100517","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","1","39.0 N","7.0 E","N","","","","","398213.0","4167711.0","37.650925","-106.153882","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006386", +"2006388","W3450 WELL NO 03A","E. FARROW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3450","18229-F","10063611/10063639-100479","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","11","39.0 N","7.0 E","N","","","","","396581.0","4166963.0","37.644002","-106.172274","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006388", +"2006390","W3450 WELL NO 04A","W. FARROW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3450","17972-F","10063590/10063689","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","39.0 N","7.0 E","N","","","","","395795.0","4166971.0","37.643985","-106.181182","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006390", +"2006391","W0389 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0389","1785-R","05060772/05060778","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","9","39.0 N","8.0 E","N","","","","","402683.0","4167096.0","37.645867","-106.103137","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006391", +"2006392","W3460 WELL NO 01A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3460","19984-F","05060772/05060778","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","9","39.0 N","8.0 E","N","","","","","403085.0","4166863.0","37.643810","-106.098550","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006392", +"2006394","W3461 WELL NO 01A","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3461","19148-F","11060541/06200664","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","SW","SW","36","41.0 N","8.0 E","N","","","","","407308.0","4178812.0","37.751928","-106.052210","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006394", +"2006396","W3473 WELL NO 01A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3473","18911-F","06-8-3876","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","13","39.0 N","8.0 E","N","","","","","407886.0","4164345.0","37.621612","-106.043821","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006396", +"2006397","W1593 WELL NO 01","#1 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1593","2967-F","12061292/12061296","RIO WEST FARMS, LLC (NEELY, TYLER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","36","40.0 N","6.0 E","N","","","","","387333.0","4170526.0","37.675020","-106.277628","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006397", +"2006398","W3474 WELL NO 01A","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3474","18976-F, 18976-F-R","12061278/12061300","RIO WEST FARMS, LLC (NEELY, TYLER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","40.0 N","6.0 E","N","","","","","388520.0","4170169.0","37.671948","-106.264116","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006398", +"2006402","W2462 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2462","206-R","14-05863-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","24","40.0 N","6.0 E","N","","","","","388181.0","4172410.0","37.692101","-106.268303","01/27/2004 12:01","https://dwr.state.co.us/Tools/Structures/2006402", +"2006403","W3515 WELL NO 01A","BECK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3515","16814-F","19-08127-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","39.0 N","8.0 E","N","","","","","406341.0","4168390.0","37.657909","-106.061845","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006403", +"2006405","W3524 WELL NO 01","MCCORMICK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3524","19797-F","12062568/12061360","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","31","41.0 N","8.0 E","N","","","","","399990.0","4178892.0","37.751879","-106.135278","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006405", +"2006410","W3533 WELL NO 01","REED 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3533","19090-F","04-8-3059","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","17","40.0 N","8.0 E","N","","","","","400761.0","4174863.0","37.715655","-106.125977","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006410", +"2006411","W3539 WELL NO 01A","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3539","20138-F","09060710/072017003086","DIAZ, MIGUEL; FELIBERTO MARTINEZ TRUST B & CATALINA MARTINEZ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","19","39.0 N","9.0 E","N","","","","","409489.0","4162731.0","37.607226","-106.025459","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006411", +"2006413","W3564 WELL NO 01A","DRAKE HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3564","20155-F","10060670/07060949","BURKHART FARMS, LLC (BURKHART, NATHAN); DRAKE, LARRY E. & JUDY L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","33","40.0 N","7.0 E","N","","","","","393382.0","4169300.0","37.664696","-106.208869","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006413", +"2006414","W0097 WELL NO 04","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0097","4592-F","06-8-4928","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","19","39.0 N","9.0 E","N","","","","","409115.0","4163907.0","37.617787","-106.029842","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006414", +"2006415","W3565 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3565","20779-F","06-8-4928","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","19","39.0 N","9.0 E","N","","","","","409517.0","4163518.0","37.614321","-106.025239","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006415", +"2006416","W3585 WELL NO PUMP 04A","CIRCLE 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3585","22135-F","11061488/05063052","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NE","34","41.0 N","8.0 E","N","","","","","404836.0","4179667.0","37.759380","-106.080379","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006416", +"2006418","W3585 WELL NO PUMP 09A","CIRCLE 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3585","21116-F, 44128-F","03063658/03063700","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","7","40.0 N","9.0 E","N","","","","","409717.0","4176400.0","37.730433","-106.024569","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006418", +"2006420","W3585 WELL NO PUMP 10A","CIRCLE 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3585","21115-F","04060156","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","28","41.0 N","8.0 E","N","","","","","403242.0","4180481.0","37.766548","-106.098580","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006420", +"2006422","W3595 WELL NO 02A","EAST BOND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0024, 24CW0005, W3595","20261-F, 86837-F","10061928/10062019","METZ, KENNETH G. & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","7","39.0 N","8.0 E","N","","","","","399862.0","4166880.0","37.643617","-106.135079","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006422", +"2006423","W0699 WELL NO 02","B2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0699","10781-R, 10781-R-R","12061245/12061348","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","6","40.0 N","8.0 E","N","","","","","399591.0","4177799.0","37.741985","-106.139655","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006423", +"2006424","W3597 WELL NO 02A","B2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3597","20375-F","12061245/12061348","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","6","40.0 N","8.0 E","N","","","","","399992.0","4178062.0","37.744399","-106.135141","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006424", +"2006427","W3669 WELL NO 01A","23 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, W3669","21396-F","07060387/07060934","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","9","40.0 N","8.0 E","N","","","","","403205.0","4175634.0","37.722865","-106.098355","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006427", +"2006428","W3669 WELL NO 03A","#21 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3669","21395-F","07060386/07060927","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","15","40.0 N","8.0 E","N","","","","","404821.0","4174811.0","37.715617","-106.079913","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006428", +"2006429","W3669 WELL NO 04A","22 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, W3669","21504-F, 87734-F","11061407/07060940","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","40.0 N","8.0 E","N","","","","","404027.0","4175625.0","37.722870","-106.089028","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006429", +"2006431","W3672 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3672","16314-F-R","12061173/12061437, 19-03473-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","20","39.0 N","9.0 E","N","","","","","411122.0","4163495.0","37.614270","-106.007053","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006431", +"2006435","W3681 WELL NO 02A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3681","20139-F","05-8-3856","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NE","29","41.0 N","8.0 E","N","","","","","401614.0","4181302.0","37.773773","-106.117173","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006435", +"2006437","W3682 WELL NO 02A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3682","20141-F","05-8-3855","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","NE","NW","29","41.0 N","8.0 E","N","","","","","400841.0","4181300.0","37.773671","-106.125948","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006437", +"2006438","W0721 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0721","16077-R, 3152-F","05-8-3853","ROCKEY FARMS LLC","RGWCD SD1","10/31/2023","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","28","41.0 N","8.0 E","N","","","","","402026.0","4180992.0","37.771023","-106.112453","02/06/2026 12:48","https://dwr.state.co.us/Tools/Structures/2006438", +"2006439","W3683 WELL NO 05A","FIELD #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3683","20140-F","05-8-3853","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NW","28","41.0 N","8.0 E","N","","","","","402412.0","4181299.0","37.773831","-106.108113","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006439", +"2006441","W3685 WELL NO 03A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3685","20154-F","052013003734","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","39.0 N","8.0 E","N","","","","","401476.0","4165244.0","37.629049","-106.116566","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006441", +"2006444","W0474 WELL NO 04","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0474","11939-R","17-09055-8","CROSS CREEK FARMS INC (BENTON, JASON L.); HAWS INC. (HAWS, JOHN L.); HAWS, HELENA","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","27","40.0 N","7.0 E","N","","","","","393847.0","4171245.0","37.682277","-106.203881","03/20/2015 15:18","https://dwr.state.co.us/Tools/Structures/2006444", +"2006447","W3703 WELL NO 03A","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3703","16812-F","15-11643-8","ENSZ, WESTON; STONE RIDGE FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","27","40.0 N","7.0 E","N","","","","","394251.0","4171698.0","37.686405","-106.199366","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006447", +"2006448","W0866 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0866","15520-R","12212666/12230533","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2013","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","6","40.0 N","9.0 E","N","","","","","409337.0","4177678.0","37.741912","-106.029040","01/17/2020 12:15","https://dwr.state.co.us/Tools/Structures/2006448", +"2006449","W3707 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3707","21804-F","12212666/12230533","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","6","40.0 N","9.0 E","N","","","","","409719.0","4177986.0","37.744726","-106.024743","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006449", +"2006450","W0681 WELL NO 01","MYERS 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0681","3025-F","052018001057/01201351","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","31","41.0 N","9.0 E","N","","","","","408546.0","4179001.0","37.753756","-106.038183","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006450", +"2006451","W3709 WELL NO 01A","MYERS 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3709","23568-F, 22151-F","052018001057/01201351","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","31","41.0 N","9.0 E","N","","","","","408927.0","4178809.0","37.752064","-106.033834","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006451", +"2006453","W3712 WELL NO 03A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3712","21864-F","12230551/10062003","LESTER, HOWARD V. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","22","39.0 N","8.0 E","N","","","","","404626.0","4162791.0","37.607275","-106.080554","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006453", +"2006455","W3735 WELL NO 01A","E7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3735","20758-F","05060234/05060257","MCCOY, JASON D. & BRANDI L.; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","25","40.0 N","7.0 E","N","","","","","397487.0","4170857.0","37.679194","-106.162553","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006455", +"2006457","W1964 WELL NO 19","BIGELOW 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1964","11639-R, 11639-R-R, 11639-R-R","12061285/12204373","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","26","41.0 N","9.0 E","N","","","","","416240.0","4181185.0","37.774176","-105.951105","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006457", +"2006458","W3757 WELL NO 19-S","BIGELOW 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3757","21392-F, 21392-F-R","12061285/12204373","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NE","26","41.0 N","9.0 E","N","","","","","416244.0","4181387.0","37.775996","-105.951083","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006458", +"2006459","W3522 WELL NO 01","FIELD #32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3522","20587-F","15-09405-8, 18-07860","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","26","40.0 N","10.0 E","N","","","","","425002.0","4170767.0","37.681046","-105.850549","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006459", +"2006460","W3768 WELL NO 01S","FIELD #32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3768","21922-F","15-09405-8, 18-07860","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","26","40.0 N","10.0 E","N","","","","","425010.0","4170867.0","37.681948","-105.850468","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006460", +"2006461","W0414 WELL NO 02","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0414","11208-R","16-13809-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","30","41.0 N","9.0 E","N","","","","","409374.0","4181098.0","37.772737","-106.029047","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006461", +"2006462","W3770 WELL NO 02A","RESS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3770","21715-F","16-13809-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NE","30","41.0 N","9.0 E","N","","","","","409768.0","4181220.0","37.773875","-106.024589","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006462", +"2006463","W3589 WELL NO 02","6- SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3589","17596-F","12061161/12061409","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","6","40.0 N","8.0 E","N","","","","","399579.0","4177099.0","37.735676","-106.139694","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006463", +"2006464","W3775 WELL NO 02A","6-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3775","21726-F","12061161/12061409","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","6","40.0 N","8.0 E","N","","","","","399987.0","4177277.0","37.737325","-106.135089","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006464", +"2006466","W3780 WELL NO 01A","EAST BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3780","20218-F","14-10164-8","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","5","39.0 N","8.0 E","N","","","","","401498.0","4168442.0","37.657871","-106.116748","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006466", +"2006468","W3780 WELL NO 06A","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3780","18638-F","09062749/10060127","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","13","39.0 N","7.0 E","N","","","","","397366.0","4165309.0","37.629185","-106.163145","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006468", +"2006470","W3782 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0021, W3782","22042-F","02082197/11061588","MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","13","40.0 N","7.0 E","N","","","","","397533.0","4174064.0","37.708099","-106.162483","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006470", +"2006472","W3795 WELL NO 01A","DILLON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3795","20386-F, 20386-F-R","01061398/01061447","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","8","39.0 N","8.0 E","N","","","","","400670.0","4166109.0","37.636757","-106.125817","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006472", +"2006474","W3797 WELL NO 03A","9 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3797","22907-F","01061418/01061430","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","23","40.0 N","8.0 E","N","","","","","406420.0","4173184.0","37.701120","-106.061565","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006474", +"2006476","W3802 WELL NO 01A","EAST KLECKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3802","22103-F","11060517/10190354","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","18","40.0 N","8.0 E","N","","","","","399960.0","4174854.0","37.715487","-106.135062","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006476", +"2006478","W3828 WELL NO 02A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3828","22073-F","10061682/10061079-100139","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","6","40.0 N","8.0 E","N","","","","","399180.0","4178087.0","37.744535","-106.144359","02/07/2011 12:02","https://dwr.state.co.us/Tools/Structures/2006478", +"2006479","W0418 WELL NO 03","WEST MULLER-NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0027, W0418","825-R","13-09614-6","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","10","39.0 N","8.0 E","N","","","","","403511.0","4167008.0","37.645162","-106.093741","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006479", +"2006480","W3829 WELL NO 03A","WEST MULLER-PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3829","22782-F","09061326/04061499","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","10","39.0 N","8.0 E","N","","","","","403904.0","4166855.0","37.643824","-106.089267","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006480", +"2006481","W0980 WELL NO 01","GUNTHER WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0980","646-R, 646-R-R","06123286/11060606","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","27","41.0 N","7.0 E","N","","","","","394854.0","4180129.0","37.762450","-106.193747","01/23/2004 16:11","https://dwr.state.co.us/Tools/Structures/2006481", +"2006482","W3830 WELL NO 01A","GUNTHER WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3830","21142-F","06123286/11060606","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","27","41.0 N","7.0 E","N","","","","","395207.0","4180496.0","37.765797","-106.189793","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006482", +"2006483","W3831 WELL NO 01A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3831","22279-F, 20258-F","03061798/03061828","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","1","39.0 N","8.0 E","N","","","","","407941.0","4167568.0","37.650663","-106.043604","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006483", +"2006492","W3835 WELL NO 02A","PEPPER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3835","23515-F, 23515-F-R","15-15150-8","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","17","40.0 N","8.0 E","N","","","","","400754.0","4174080.0","37.708598","-106.125950","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006492", +"2006494","W3844 WELL NO 01A","42 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3844","22876-F","08062030/08061993","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","28","41.0 N","8.0 E","N","","","","","402427.0","4180493.0","37.766569","-106.107834","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006494", +"2006496","W3846 WELL NO 08A","SEGAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3846","16239-F","03060386/03060436","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","32","41.0 N","7.0 E","N","","","","","391949.0","4179768.0","37.758858","-106.226667","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006496", +"2006497","W0442 WELL NO 03","PERRIN NORTH COOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","299-R","07-10-1015","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","33","41.0 N","8.0 E","N","","","","","402848.0","4179387.0","37.756647","-106.102907","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006497", +"2006498","W3853 WELL NO 03A","P4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3853","22897-F","09061306/09061381","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NE","33","41.0 N","8.0 E","N","","","","","403239.0","4179684.0","37.759365","-106.098508","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006498", +"2006500","W3853 WELL NO 05A","P5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3853","22156-F","09061308/09061414, 23-00711-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","34","41.0 N","8.0 E","N","","","","","404033.0","4179667.0","37.759296","-106.089494","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006500", +"2006502","W3882 WELL NO 01A","12 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3882","21581-F, 21581-F-R, 87175-F","01061405/01061423","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","21","40.0 N","8.0 E","N","","","","","402362.0","4173234.0","37.701147","-106.107597","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006502", +"2006504","W3882 WELL NO 06A","11 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3882","23183-F","11061411/06214540","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","29","40.0 N","8.0 E","N","","","","","401516.0","4170821.0","37.679311","-106.116866","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006504", +"2006512","W3903 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3903","22908-F","10063541/10063708","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY; MYERS, SHIRLEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","36","41.0 N","8.0 E","N","","","","","407300.0","4179631.0","37.759308","-106.052406","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006512", +"2006513","W0081 WELL NO 01","NEVITT 35","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0081","7042-R, 7042-R-R","02060434","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","26","41.0 N","8.0 E","N","","","","","406115.0","4180137.0","37.763747","-106.065922","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006513", +"2006514","W3904 WELL NO 01A","NEVITT 35","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3904","22909-F","02060434","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","26","41.0 N","8.0 E","N","","","","","406482.0","4180452.0","37.766624","-106.061796","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006514", +"2006515","W0403 WELL NO 01","CIRCLE 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0403","8678-R","04060175/09212247","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","36","41.0 N","8.0 E","N","","","","","407697.0","4179481.0","37.757997","-106.047880","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006515", +"2006516","W3908 WELL NO 01A","CIRCLE 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3908","22919-F","04060175/09212247","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","36","41.0 N","8.0 E","N","","","","","408114.0","4179610.0","37.759201","-106.043163","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006516", +"2006518","W3908 WELL NO 01A1","#7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3908","23054-F","04060159/04060149","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","25","41.0 N","8.0 E","N","","","","","407333.0","4181251.0","37.773911","-106.052238","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006518", +"2006519","W0406 WELL NO 01","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0406","1981-R","04060179/04060134","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","1","40.0 N","8.0 E","N","","","","","407713.0","4177609.0","37.741128","-106.047461","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006519", +"2006520","W3908 WELL NO 01A2","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3908","22921-F","04060179/04060134","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","NE","1","40.0 N","8.0 E","N","","","","","408110.0","4177930.0","37.744061","-106.042996","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006520", +"2006521","W0403 WELL NO 03","8 - ROAD C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0403","10317-R","20-03188-08","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","25","41.0 N","8.0 E","N","","","","","407744.0","4180867.0","37.770492","-106.047523","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006521", +"2006522","W3908 WELL NO 03A","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3908","22920-F","20-03188-08","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NE","25","41.0 N","8.0 E","N","","","","","408143.0","4181244.0","37.773929","-106.043041","12/29/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006522", +"2006524","W3908 WELL NO 06A","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3908","23516-F","04060169/04060129","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","30","41.0 N","9.0 E","N","","","","","408951.0","4180426.0","37.766639","-106.033765","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006524", +"2006525","W3913 WELL NO 02A","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0014, W3913","22581-F","GP11-4797-8","FPI COLORADO LLC (FARMLAND PARTNERS, INC.); KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","31","40.0 N","10.0 E","N","","","","","419349.0","4169975.0","37.673429","-105.914564","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006525", +"2006526","W1181 WELL NO 03","# 3 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1181","12945-R, 12945-R-R, 89155-F","17-02576-6","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","34","39.0 N","9.0 E","N","","","","","413932.0","4160367.0","37.586348","-105.974851","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006526", +"2006527","W3932 WELL NO 03A","# 3 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3932","22831-F","17-02577-6","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","34","39.0 N","9.0 E","N","","","","","414316.0","4160236.0","37.585203","-105.970487","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006527", +"2006528","W0198 WELL NO 06","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0198","15402-F","03061800/112018000051","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","34","40.0 N","9.0 E","N","","","","","413658.0","4169132.0","37.665314","-105.978989","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006528", +"2006529","W3939 WELL NO 06A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3939","22865-F","03061800/112018000051","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SW","34","40.0 N","9.0 E","N","","","","","413816.0","4169059.0","37.664670","-105.977189","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006529", +"2006531","W3952 WELL NO 01A","M2 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3952","16939-F","16-06010-8, 18-04566-08","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","24","40.0 N","7.0 E","N","","","","","397655.0","4172472.0","37.693767","-106.160875","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006531", +"2006532","W3630 WELL NO 01","FIELD #56","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3630","20461-F","60603316296/10060080","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","34","40.0 N","10.0 E","N","","","","","423777.0","4168760.0","37.662857","-105.864230","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006532", +"2006533","W3954 WELL NO 01A","FIELD #56","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3954","23579-F","60603316296/10060080","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","34","40.0 N","10.0 E","N","","","","","424168.0","4168980.0","37.664872","-105.859820","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006533", +"2006534","W3966 WELL NO 07A","CIRCLE 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3966","24118-F","03063663/03063699","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","7","40.0 N","9.0 E","N","","","","","408905.0","4176374.0","37.730118","-106.033779","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006534", +"2006535","W3972 WELL NO 04","FIELD #69","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3972","21063-F","15-09406-8, 21-02220","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","40.0 N","10.0 E","N","","","","","421029.0","4174072.0","37.710498","-105.895959","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006535", +"2006536","W3972 WELL NO 04S","FIELD #69","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3972","24829-F","15-09406-8, 21-02220","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SE","17","40.0 N","10.0 E","N","","","","","421150.0","4173949.0","37.709400","-105.894573","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006536", +"2006538","W3972 WELL NO 06S","FIELD #71","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3972","24828-F","15-06951-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","19","40.0 N","10.0 E","N","","","","","419231.0","4173276.0","37.703168","-105.916267","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006538", +"2006539","W1413 WELL NO 01","FIELD #40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1413","12209-F","24-04858, 24-04859","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2024","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","14","40.0 N","10.0 E","N","","","","","424705.0","4174370.0","37.713493","-105.854289","08/07/2024 15:21","https://dwr.state.co.us/Tools/Structures/2006539", +"2006540","W3975 WELL NO 01A","FIELD #40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3975","21602-F","24-04858, 24-04859","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","14","40.0 N","10.0 E","N","","","","","425049.0","4173982.0","37.710025","-105.850347","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006540", +"2006541","W3975 WELL NO 02S","FIELD #40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3975","21603-F","24-04858, 24-04859","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","14","40.0 N","10.0 E","N","","","","","425036.0","4173823.0","37.708591","-105.850478","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006541", +"2006542","W3975 WELL NO 03S","FIELD #40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3975","22684-F","24-04858, 24-04859","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","14","40.0 N","10.0 E","N","","","","","425230.0","4173972.0","37.709949","-105.848292","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006542", +"2006545","W3746 WELL NO 01A","KING","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3746","20583-F, 20583-F-R","10063554/10063722","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","8","40.0 N","8.0 E","N","","","","","400783.0","4176463.0","37.730076","-106.125946","11/06/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006545", +"2006547","W3462 WELL NO 10A","M5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3462","18979-F","12062575/12062708","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","22","40.0 N","7.0 E","N","","","","","394268.0","4172503.0","37.693662","-106.199290","01/06/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006547", +"2006549","W3536 WELL NO 06A","FIELD #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3536","20373-F","03060404/149608","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, TERRY & KATE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","25","41.0 N","7.0 E","N","","","","","398416.0","4180493.0","37.766132","-106.153366","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006549", +"2006555","W1357 WELL NO 12","# 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","89CW0028","13476-R, 13476-R-R","19-09614-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","34","39.0 N","9.0 E","N","","","","","414324.0","4159454.0","37.578156","-105.970305","11/19/2008 11:04","https://dwr.state.co.us/Tools/Structures/2006555", +"2006557","W3282 WELL NO 01","FLD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3282","18140-F","12061279/12061309","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","27","41.0 N","9.0 E","N","","","","","413409.0","4180302.0","37.765954","-105.983142","12/29/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006557", +"2006560","W0043 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0043","818-R","01062042/01062064","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","15","39.0 N","8.0 E","N","","","","","404249.0","4164053.0","37.618609","-106.084990","10/10/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006560", +"2006561","89CW010 WELL NO 02A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0010","24381-F","01062042/01062064","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","39.0 N","8.0 E","N","","","","","404638.0","4164390.0","37.621686","-106.080626","10/10/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006561", +"2006562","90CW012 WELL NO 01A","FLD 1 PVT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0012","29661-F","12061191/12061372-100883","VERSAW, CHARLIE J.; VERSAW, STANLEY F.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","34","41.0 N","9.0 E","N","","","","","414598.0","4179598.0","37.759722","-105.969561","11/13/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006562", +"2006563","W0704 WELL NO 01","WEST CANAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0704","10970-R, 10970-R-R","14-08168-8","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","16","40.0 N","7.0 E","N","","","","","393120.0","4173815.0","37.705351","-106.212501","11/13/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006563", +"2006564","90CW003 WELL NO 01A","EAST CANAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","90CW0003","25286-F","10063610/10063650","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","16","40.0 N","7.0 E","N","","","","","393519.0","4174097.0","37.707939","-106.208017","11/13/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006564", +"2006567","89CW035 WELL NO 01","FLD 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0040, 89CW0035","22835-F, 22835-F-R","12061188/12061389","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","27","41.0 N","9.0 E","N","","","","","414595.0","4180403.0","37.766976","-105.969690","11/13/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006567", +"2006574","90CW016 WELL NO 05","# 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0016","24077-F","10061880/10062094","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","26","39.0 N","9.0 E","N","","","","","415151.0","4161843.0","37.599763","-105.961217","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006574", +"2006575","90CW016 WELL NO 06","# 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0016","24703-F","10061880/10062094","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","26","39.0 N","9.0 E","N","","","","","414967.0","4161832.0","37.599647","-105.963300","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006575", +"2006576","90CW015 WELL NO 02S","FIELD #42","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0015","25320-F","22-04264-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","2","40.0 N","10.0 E","N","","","","","424968.0","4177069.0","37.737839","-105.851584","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006576", +"2006577","W1618 WELL NO 02","FIELD #42","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1618","10971-F, 10971-F-R, 10971-F-R","22-04264-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","2","40.0 N","10.0 E","N","","","","","425098.0","4177202.0","37.739049","-105.850122","01/31/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006577", +"2006579","89CW042 WELL NO 02A","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0042","16955-F, 16955-F-R","09060718/09060743","BURKHART FARMS, LLC (BURKHART, NATHAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","32","40.0 N","7.0 E","N","","","","","390957.0","4169362.0","37.664969","-106.236367","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006579", +"2006580","W0377 WELL NO 03","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0377","10820-R","08061990/08062008","BURKHART FARMS, LLC (BURKHART, NATHAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","32","40.0 N","7.0 E","N","","","","","391359.0","4169087.0","37.662539","-106.231769","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006580", +"2006581","89CW042 WELL NO 03A","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0042","20219-F","08061990/08062008","BURKHART FARMS, LLC (BURKHART, NATHAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","32","40.0 N","7.0 E","N","","","","","391768.0","4169331.0","37.664786","-106.227169","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006581", +"2006585","90CW009 WELL NO 04R","4-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0009","5002-F-R","04061994/04062023","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","29","41.0 N","8.0 E","N","","","","","401565.0","4180491.0","37.766459","-106.117619","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006585", +"2006587","88CW034 WELL NO 01R","Q9 #31 BOB MYERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0007, 24CW0007, 88CW0034","20325-R, 90373-F","05062230/12230527","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","29","41.0 N","9.0 E","N","","","","","410554.0","4180410.0","37.766653","-106.015565","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006587", +"2006588","88CW034 WELL NO 01S","Q9 #31 BOB MYERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0007, 24CW0007, 88CW0034","34580-F, 90372-F","05062230/12230527","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","29","41.0 N","9.0 E","N","","","","","410550.0","4180221.0","37.764949","-106.015587","01/30/1991 00:00","https://dwr.state.co.us/Tools/Structures/2006588", +"2006589","88CW34 WELL NO 2R","MYERS 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0001, 88CW0034","20325-S, 88966-F","05062231/05062204","CONSAUL, SCOTT; LINDA K. HAVERLAND TRUST (HAVERLAND, LINDA K.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","29","41.0 N","9.0 E","N","","","","","411359.0","4181217.0","37.774004","-106.006525","10/15/2024 09:42","https://dwr.state.co.us/Tools/Structures/2006589", +"2006591","81CW087 WELL NO 04","FIELD 65","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0087, 91CW0008","27374-F, 37367-F","","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2014","3","20","ALAMOSA","","","SE","NW","SW","20","39.0 N","10.0 E","N","","","","","419843.0","4162629.0","37.607268","-105.908156","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006591", +"2006592","81CW087 WELL NO 05","FIELD 65","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0087, 91CW0008","27375-F, 37368-F","","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2014","3","20","ALAMOSA","","","SE","NW","SW","20","39.0 N","10.0 E","N","","","","","420022.0","4162628.0","37.607274","-105.906128","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006592", +"2006593","81CW087 WELL NO 06","FIELD 65","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0087, 91CW0008","27373-F, 37366-F","","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2014","3","20","ALAMOSA","","","SE","NW","SW","20","39.0 N","10.0 E","N","","","","","420031.0","4162810.0","37.608915","-105.906046","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006593", +"2006594","W0303 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","17CW0008, W0303","10260-R","07-8-1282, 11061531/11061551","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","5","40.0 N","10.0 E","N","","","","","419855.0","4177723.0","37.743300","-105.909680","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006594", +"2006596","82CW085 WELL NO 02","FIELD #38","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0085","22281-F","15-10716-8, 23-07616-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","6","39.0 N","10.0 E","N","","","","","419312.0","4168319.0","37.658501","-105.914800","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006596", +"2006598","91CW007 WELL NO 02S","FIELD #38","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0007","37765-F","15-10716-8, 23-07616-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","6","39.0 N","10.0 E","N","","","","","418997.0","4168605.0","37.661051","-105.918403","02/17/2009 11:20","https://dwr.state.co.us/Tools/Structures/2006598", +"2006599","91CW007 WELL NO 03S","FIELD #39","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0007","37764-F","23-07617-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","31","40.0 N","10.0 E","N","","","","","419213.0","4169271.0","37.667072","-105.916028","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006599", +"2006601","W0903 WELL NO JORDE 01","SUP 33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11966-R","03062365/03062389","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","32","41.0 N","9.0 E","N","","","","","410165.0","4179219.0","37.755881","-106.019834","08/20/2003 14:04","https://dwr.state.co.us/Tools/Structures/2006601", +"2006602","91CW002 WELL NO JORDY 1A","30","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0002, 97CW0015","48906-F, 48906-F-R","03060380/03060423","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","29","41.0 N","9.0 E","N","","","","","411353.0","4180411.0","37.766739","-106.006495","11/05/1999 00:00","https://dwr.state.co.us/Tools/Structures/2006602", +"2006604","87CW039 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0039","20096-F","GP06-06-2103, GP12-3450","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","39.0 N","10.0 E","N","","","","","423995.0","4164262.0","37.622338","-105.861290","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006604", +"2006605","87CW040 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0040","24862-F","GP06-06-2103, GP12-3450","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SE","15","39.0 N","10.0 E","N","","","","","424076.0","4164269.0","37.622407","-105.860373","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006605", +"2006606","87CW040 WELL NO 01SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0040","24863-F","GP06-06-2103, GP12-3450","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","39.0 N","10.0 E","N","","","","","423985.0","4164180.0","37.621598","-105.861395","12/09/2025 11:09","https://dwr.state.co.us/Tools/Structures/2006606", +"2006608","W3852 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0040, W3852","21141-F, 929-R-R","10062694/10062891","LEWIS, DWAYNE; VERSAW, ARDELL E. & ESTALITA MARIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","28","41.0 N","9.0 E","N","","","","","412979.0","4180396.0","37.766760","-105.988034","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006608", +"2006610","89CW041 WELL NO 01A","DAD'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","89CW0041","22872-F, 22872-F-R","100594/11060619","BURKHART FARMS, LLC (BURKHART, NATHAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","32","40.0 N","7.0 E","N","","","","","391767.0","4170137.0","37.672049","-106.227300","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006610", +"2006612","89CW041 WELL NO 01AA","TOWER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0041","20217-F","100264/10062081","BURKHART FARMS, LLC (BURKHART, NATHAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","32","40.0 N","7.0 E","N","","","","","390971.0","4170177.0","37.672315","-106.236330","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006612", +"2006615","90CW001 WELL NO 05R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0001","6075-R-R","08061995/08062016","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","13","40.0 N","8.0 E","N","","","","","408049.0","4174788.0","37.715740","-106.043291","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006615", +"2006617","89CW036 WELL NO 01A","FLD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0036","25445-F","12061279/12061309","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","27","41.0 N","9.0 E","N","","","","","413823.0","4180417.0","37.767030","-105.978455","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006617", +"2006622","91CW011 WELL NO 01R","SHOP QTR @ PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0011","18632-F-R","09061944/09061993","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","5","39.0 N","10.0 E","N","","","","","420107.0","4168294.0","37.658345","-105.905785","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006622", +"2006623","W1120 WELL NO 04","FIELD #54","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1120","2832-F","22030881, 22-08088-10","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","34","40.0 N","10.0 E","N","","","","","423821.0","4169967.0","37.673739","-105.863857","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006623", +"2006624","90CW031 WELL NO 04A","FIELD 55","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","90CW0031","36877-F","17-06918","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","35","40.0 N","10.0 E","N","","","","","424979.0","4169944.0","37.673627","-105.850725","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006624", +"2006626","90CW024 WELL NO 01A","PINK HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","90CW0024","23701-F, 23701-F-R","02061564/02061575","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","32","41.0 N","7.0 E","N","","","","","391093.0","4178980.0","37.751656","-106.236265","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006626", +"2006627","84CW003 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0003","21155-F","10063533/052018002662","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","21","40.0 N","10.0 E","N","","","","","421814.0","4172346.0","37.695010","-105.886869","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006627", +"2006628","84CW004 WELL NO 01R","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0004","20501-F","10063533/052018002662","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","21","40.0 N","10.0 E","N","","","","","421793.0","4172551.0","37.696856","-105.887129","01/27/2004 10:41","https://dwr.state.co.us/Tools/Structures/2006628", +"2006629","90CW018 WELL NO 01S","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0018","27522-F","10063533/052018002662","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","21","40.0 N","10.0 E","N","","","","","421644.0","4172344.0","37.694978","-105.888797","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006629", +"2006630","90CW018 WELL NO 01SS","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0018","27521-F","11060499/11060690","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NE","SE","20","40.0 N","10.0 E","N","","","","","421148.0","4172512.0","37.696449","-105.894440","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006630", +"2006631","90CW027 WELL NO 01A","NORTH BURNS #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","25CW0004, 90CW0027","24036-F, 90682-F","10063594/10063694","GREG ALLEN PETERSON TRUST (PETERSON, JUDITH); PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","40.0 N","8.0 E","N","","","","","404063.0","4178030.0","37.744547","-106.088937","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006631", +"2006632","90CW027 WELL NO 03A","SOUTH BURNS #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0027","20467-F","10063622/10063653","GREG ALLEN PETERSON TRUST (PETERSON, JUDITH); PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","40.0 N","8.0 E","N","","","","","404062.0","4177251.0","37.737527","-106.088845","02/15/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006632", +"2006633","89CW045 WELL NO W2","# 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0045","38425-F","19-09614-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","34","39.0 N","9.0 E","N","","","","","413954.0","4159075.0","37.574706","-105.974450","04/09/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006633", +"2006635","90CW020 WELL NO 01R","W7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0020","6079-R-R","05060282/05060232","BENTON, JASON L.; MCCOY, JASON D. & BRANDI L.; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","27","40.0 N","7.0 E","N","","","","","395033.0","4170879.0","37.679115","-106.190380","06/05/2008 11:46","https://dwr.state.co.us/Tools/Structures/2006635", +"2006637","W3671 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3671","16127-F-R","09060717/09060752","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","21","39.0 N","9.0 E","N","","","","","411944.0","4163492.0","37.614322","-105.997741","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006637", +"2006643","92CW007 WELL NO 01S","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0007","36420-F","09060717/09060752","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","21","39.0 N","9.0 E","N","","","","","411560.0","4163725.0","37.616385","-106.002119","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006643", +"2006644","W3328 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3328","17034-F, 17034-F-R","12062559/12062727","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","39.0 N","9.0 E","N","","","","","411128.0","4164316.0","37.621670","-106.007085","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006644", +"2006645","92CW008 WELL NO 05S","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0008","36252-F","12062559/12062727","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","39.0 N","9.0 E","N","","","","","410734.0","4164511.0","37.623389","-106.011573","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006645", +"2006646","W2361 WELL NO 17","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2361","6204-R, 87699-F","03063665/05060803, 222118617","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","3","40.0 N","7.0 E","N","","","","","394709.0","4177749.0","37.740986","-106.195048","12/01/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006646", +"2006647","91CW021 WELL NO 17A","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0021","41464-F","03063665/05060803","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","3","40.0 N","7.0 E","N","","","","","395119.0","4178127.0","37.744439","-106.190450","12/01/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006647", +"2006648","W1000 WELL NO 03","#23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, 23CW0016, W1000","496-R, 496-R-R, 89773-F","11061710/052018001069","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SW","SW","9","39.0 N","9.0 E","N","","","","","411573.0","4165786.0","37.634961","-106.002221","01/11/2020 13:44","https://dwr.state.co.us/Tools/Structures/2006648", +"2006649","92CW019 WELL NO 01","#22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0016, 92CW0019","13727-R-R","06-6-1098","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","9","40.0 N","10.0 E","N","","","","","421653.0","4175951.0","37.727486","-105.889083","12/19/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006649", +"2006654","92CW004 WELL NO 03S","QTR 22, WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0004","28415-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","SE","NW","NE","24","39.0 N","9.0 E","N","","","","","417461.0","4163465.0","37.614591","-105.935234","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006654", +"2006655","92CW004 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0004","22607-F","","KRUSE, BARBARA; KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SW","SE","24","39.0 N","9.0 E","N","","","","","417632.0","4162552.0","37.606378","-105.933194","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006655", +"2006656","92CW004 WELL NO 04S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0004","36602-F","","KRUSE, BARBARA; KRUSE, MICHAEL","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SE","24","39.0 N","9.0 E","N","","","","","417438.0","4162649.0","37.607235","-105.935403","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006656", +"2006659","92CW039 WELL NO 02R","1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0039","11294-R-R","01061415/12230529","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","32","40.0 N","8.0 E","N","","","","","401498.0","4169223.0","37.664909","-106.116854","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006659", +"2006662","81CW072 WELL NO 03","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0072","26882-F, 47246-F","03-6-1235","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","2","40.0 N","10.0 E","N","","","","","425897.0","4178001.0","37.746314","-105.841136","01/20/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006662", +"2006673","93CW006 WELL NO 01","GOODMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0006","21036-S","23-03749-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","2","39.0 N","8.0 E","N","","","","","406343.0","4167634.0","37.651096","-106.061725","08/14/2008 13:59","https://dwr.state.co.us/Tools/Structures/2006673", +"2006675","93CW002 WELL NO 01R","REED 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0027, 93CW0002","17887-F-R, 86777-F","10-00106-08","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","8","40.0 N","8.0 E","N","","","","","400781.0","4175646.0","37.722713","-106.125857","01/09/2004 15:59","https://dwr.state.co.us/Tools/Structures/2006675", +"2006678","92CW017 WELL NO 01S","2006679- 12 & 13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0017","39109-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","15","39.0 N","9.0 E","N","","","","","414165.0","4164661.0","37.625068","-105.972716","01/28/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006678", +"2006679","W2367 WELL NO 02","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2367","9438-F-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","15","39.0 N","9.0 E","N","","","","","414398.0","4165065.0","37.628730","-105.970123","01/28/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006679", +"2008001","79CW002 WELL NO 01R","SANDERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0002","6199-R-R","09061311/09061361","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","21","40.0 N","7.0 E","N","","","","","393466.0","4173332.0","37.701039","-106.208506","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008001", +"2008002","79CW003 WELL NO 03S","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0003","22537-F","GP12-3932- PIVOT","BROWN, MARK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","9","39.0 N","10.0 E","N","","","","","422510.0","4165849.0","37.636516","-105.878285","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008002", +"2008003","79CW008 WELL NO 03R","BAKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0008","6488-R, 6488-R-R","12061253/12061337","BAKER, TROY & JULIE; EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","12","40.0 N","8.0 E","N","","","","","407267.0","4175609.0","37.723060","-106.052267","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008003", +"2008005","79CW022 WELL NO 01","BRAUN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0022","20263-F","05060759/05060794","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","26","41.0 N","7.0 E","N","","","","","396822.0","4181298.0","37.773208","-106.171574","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008005", +"2008008","79CW026 WELL NO 01","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0026","22826-F","09060688/09060723","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","16","39.0 N","9.0 E","N","","","","","412749.0","4164280.0","37.621501","-105.988715","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008008", +"2008009","79CW026 WELL NO 02","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW3010, 79CW0026","22827-F","20-03934-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","16","39.0 N","9.0 E","N","","","","","411951.0","4165083.0","37.628661","-105.997853","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008009", +"2008011","79CW033 WELL NO 01R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0033","675-R-R","03061817/03061848","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","27","41.0 N","8.0 E","N","","","","","404059.0","4181283.0","37.773861","-106.089412","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008011", +"2008012","79CW040 WELL NO 04R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0040","5399-F-R","10060737/10061037","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","1","39.0 N","7.0 E","N","","","","","398230.0","4168472.0","37.657784","-106.153796","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008012", +"2008016","79CW059 WELL NO 02R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0059","225-R-R","10063548/10063737-100468","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","31","40.0 N","8.0 E","N","","","","","399085.0","4170049.0","37.672090","-106.144323","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008016", +"2008017","79CW059 WELL NO 05R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0059","12222-R","10063549/10063733","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","30","40.0 N","8.0 E","N","","","","","399909.0","4171636.0","37.686482","-106.135199","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008017", +"2008018","79CW061 WELL NO 01","FIELD #20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0061","22428-F","20-04383","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","29","40.0 N","9.0 E","N","","","","","411289.0","4171558.0","37.686951","-106.006141","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008018", +"2008026","79CW083 WELL NO 03R","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0083","10625-F-R, 10625-R-R","09212322/12212614","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","8","39.0 N","8.0 E","N","","","","","401475.0","4166879.0","37.643783","-106.116798","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008026", +"2008027","79CW084 WELL NO 01","36","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0084","22533-F","12062596/12062681","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","31","41.0 N","10.0 E","N","","","","","419041.0","4178395.0","37.749284","-105.918993","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008027", +"2008030","79CW090 WELL NO 02","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0090","22430-F","12212553","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","16","39.0 N","10.0 E","N","","","","","421696.0","4165002.0","37.628814","-105.887419","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008030", +"2008031","79CW090 WELL NO 02S","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0090","22431-F","12212553","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","16","39.0 N","10.0 E","N","","","","","421693.0","4164942.0","37.628273","-105.887446","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008031", +"2008032","79CW090 WELL NO 02SS","NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0090","23573-F","12212553","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","16","39.0 N","10.0 E","N","","","","","421690.0","4165089.0","37.629597","-105.887496","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008032", +"2008033","80CW001 WELL NO 06","GK HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0001","21995-F","06-6-2105","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","33","40.0 N","10.0 E","N","","","","","421379.0","4169324.0","37.667738","-105.891477","08/28/2024 12:24","https://dwr.state.co.us/Tools/Structures/2008033", +"2008034","80CW006 WELL NO 03","TRIANGLE #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0006","22922-F","19-06359-08","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","4","40.0 N","8.0 E","N","","","","","403241.0","4177250.0","37.737431","-106.098161","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008034", +"2008037","80CW023 WELL NO 01","# 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0023","22481-F","07-8-1286","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON R. AND SHAWN D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","26","39.0 N","9.0 E","N","","","","","415558.0","4161054.0","37.592690","-105.956516","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008037", +"2008038","80CW029 WELL NO 06"," #6 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0029","24751-F","10063558/10063731","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","33","41.0 N","9.0 E","N","","","","","412964.0","4179590.0","37.759495","-105.988108","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008038", +"2008039","80CW029 WELL NO 07","MYERS 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0014, 80CW0029","24754-F, 24754-F-R, 89339-F","05083049/05083097","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","35","41.0 N","9.0 E","N","","","","","415402.0","4178784.0","37.752461","-105.960340","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008039", +"2008040","80CW030 WELL NO 05","MYERS 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0030","24752-F","15-11370-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","34","41.0 N","9.0 E","N","","","","","413786.0","4178791.0","37.752373","-105.978682","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008040", +"2008041","80CW042 WELL NO 01","# 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0042","22709-F","15-06618-8, GP12-4742-6","SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","35","39.0 N","9.0 E","N","","","","","415937.0","4160228.0","37.585280","-105.952128","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008041", +"2008042","80CW042 WELL NO 02","# 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0042","22710-F","15-06618-8, GP12-4742-6","SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","35","39.0 N","9.0 E","N","","","","","415779.0","4160215.0","37.585149","-105.953916","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008042", +"2008046","80CW063 WELL NO 01","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0063","22659-F","11060526/12230532","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","20","40.0 N","10.0 E","N","","","","","420193.0","4172322.0","37.694654","-105.905251","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008046", +"2008048","80CW78 WELL NO 01","FIELD 19, FKA 2014172","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0078","18138-F, 18138-F-R, 86335-F","10060719/10061061-19 PIVOT, 10063538/12212607","BEIRIGER, GRANT M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","1","40.0 N","9.0 E","N","","","","","417843.0","4177971.0","37.745356","-105.932542","11/14/2013 10:43","https://dwr.state.co.us/Tools/Structures/2008048", +"2008050","80CW080 WELL NO 01S","ASBELL 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0080","22890-F","052018002644/12062877","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","1","40.0 N","9.0 E","N","","","","","417012.0","4177027.0","37.736774","-105.941865","01/30/1996 00:00","https://dwr.state.co.us/Tools/Structures/2008050", +"2008129","80CW123 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0123","22478-F","062013004249/10061050","KOLB, JONAH; WARNER & KOLB FAMILY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","36","40.0 N","10.0 E","N","","","","","427390.0","4169151.0","37.666674","-105.823309","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008129", +"2008130","80CW123 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0123","23080-F","062013004249/10061050","KOLB, JONAH; WARNER & KOLB FAMILY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SE","36","40.0 N","10.0 E","N","","","","","427386.0","4168978.0","37.665115","-105.823337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008130", +"2008137","81CW0009 WELL NO. 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0009","201013-","02000067","SESSUMS, JOHN H.","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","25","40.0 N","8.0 E","N","","","","","406844.0","4170408.0","37.676146","-106.056401","01/16/2024 14:18","https://dwr.state.co.us/Tools/Structures/2008137", +"2008139","81CW029 WELL NO 01 1","FIELD #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0029","20866-F","14-08628","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","24","40.0 N","9.0 E","N","","","","","416963.0","4173138.0","37.701721","-105.941977","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008139", +"2008141","81CW035 WELL NO 01","COWAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0035","23501-F","06-6-2100","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","33","40.0 N","10.0 E","N","","","","","422575.0","4170294.0","37.676582","-105.878020","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008141", +"2008142","81CW042 WELL NO 01","24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0042","25213-F","11060543/062019000985","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","32","41.0 N","10.0 E","N","","","","","420255.0","4179580.0","37.760070","-105.905344","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008142", +"2008143","81CW042 WELL NO 02","24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0042","25214-F","11060543/062019000985","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NW","32","41.0 N","10.0 E","N","","","","","420246.0","4179759.0","37.761683","-105.905466","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008143", +"2008144","81CW052 WELL NO 01","#29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0052","25204-F","05062254","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","7","40.0 N","10.0 E","N","","","","","418621.0","4176388.0","37.731160","-105.923535","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008144", +"2008145","81CW052 WELL NO 02","#29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0052","25203-F","05062254","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","7","40.0 N","10.0 E","N","","","","","418619.0","4176212.0","37.729573","-105.923538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008145", +"2008148","81CW052 WELL NO 05","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0052","25200-F","09062747/05062200","BEIRIGER, TRAVIS P.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","7","40.0 N","10.0 E","N","","","","","419395.0","4175587.0","37.724009","-105.914663","12/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008148", +"2008149","81CW052 WELL NO 06","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0052","25199-F","09062747/05062200","BEIRIGER, TRAVIS P.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","7","40.0 N","10.0 E","N","","","","","419401.0","4175772.0","37.725677","-105.914616","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008149", +"2008150","81CW053 WELL NO 01","FIELD #41","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0053","24305-F","15-06397-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","14","40.0 N","10.0 E","N","","","","","425840.0","4173980.0","37.710071","-105.841373","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008150", +"2008153","81CW056 WELL NO 01","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0026, 22CW0041, 81CW0056","24334-F","09060223/09060257","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","13","40.0 N","9.0 E","N","","","","","417765.0","4173979.0","37.709373","-105.932975","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008153", +"2008154","81CW056 WELL NO 02","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0026, 22CW0041, 81CW0056","24734-F","09060223/09060257","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","13","40.0 N","9.0 E","N","","","","","417755.0","4174154.0","37.710949","-105.933109","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008154", +"2008155","81CW059 WELL NO 01","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0059","24335-F","","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","","NW","SW","13","40.0 N","9.0 E","N","","","","","416967.0","4173958.0","37.709112","-105.942025","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008155", +"2008156","81CW059 WELL NO 02","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0059","24733-F","","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","SE","NW","SW","13","40.0 N","9.0 E","N","","","","","416953.0","4174126.0","37.710624","-105.942203","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008156", +"2008157","21CW0026 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0026, 22CW0041","86409-F","09060223/09060257","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","SW","SE","13","40.0 N","9.0 E","N","","","","","417492.0","4173655.0","37.706428","-105.936036","12/01/2022 14:13","https://dwr.state.co.us/Tools/Structures/2008157", +"2008161","81CW101 WELL NO 01","BIGELOW 8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0101","25181-F, 25181-F-R","07-8-1036","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","26","41.0 N","9.0 E","N","","","","","415430.0","4180393.0","37.766963","-105.960209","01/16/2008 11:12","https://dwr.state.co.us/Tools/Structures/2008161", +"2008163","81CW120 WELL NO 25","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0120","22136-F","062014002068/09061370","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","19","40.0 N","9.0 E","N","","","","","409732.0","4172380.0","37.694206","-106.023900","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008163", +"2008164","81CW120 WELL NO 26","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0120","24944-F","09061282/09061369","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","25","40.0 N","8.0 E","N","","","","","407999.0","4171567.0","37.686708","-106.043451","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008164", +"2008165","21CW0025 WELL NO. 4-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0025, 22CW0041","86410-F","11061510/09060255","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","SW","SE","18","40.0 N","10.0 E","N","","","","","419027.0","4173675.0","37.706746","-105.918626","12/01/2022 14:13","https://dwr.state.co.us/Tools/Structures/2008165", +"2008166","81CW128 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0128","24311-F","23-02648-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","36","40.0 N","10.0 E","N","","","","","426603.0","4169158.0","37.666675","-105.832232","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008166", +"2008167","81CW128 WELL NO 01S","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0128","24312-F","23-02648-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","36","40.0 N","10.0 E","N","","","","","426592.0","4168966.0","37.664943","-105.832337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008167", +"2008169","81CW131 WELL NO 02","FIELD #28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0131","25070-F","20-051138","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","35","40.0 N","9.0 E","N","","","","","416114.0","4169887.0","37.672346","-105.951233","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008169", +"2008172","81CW140 WELL NO 01","J1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0140","22479-F, 47149-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NE","NW","36","40.0 N","10.0 E","N","","","","","426603.0","4169971.0","37.674002","-105.832314","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008172", +"2008173","81CW140 WELL NO 01S","J1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0140","22905-F, 47138-F, 47138-F-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NE","NW","36","40.0 N","10.0 E","N","","","","","426604.0","4170194.0","37.676012","-105.832325","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008173", +"2008174","81CW143 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0143","24830-F","11061439/07061160","SMEAD, MARK & JENNIFER; WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","11","39.0 N","9.0 E","N","","","","","415825.0","4166870.0","37.645129","-105.954161","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008174", +"2008176","81CW165 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0165","25418-F, 25418-F-R","GP10-3717-8","CANON SPUD GROWERS ASSOCIATION","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SE","NW","4","40.0 N","8.0 E","N","","","","","402748.0","4177955.0","37.743732","-106.103850","08/06/2020 16:42","https://dwr.state.co.us/Tools/Structures/2008176", +"2008180","82CW003 WELL NO 01","FIELD #44","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0003","24599-F","60603145681","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","40.0 N","10.0 E","N","","","","","423316.0","4177982.0","37.745930","-105.870428","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008180", +"2008181","82CW003 WELL NO 02","FIELD #44","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0003","23367-F","60603145681","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","3","40.0 N","10.0 E","N","","","","","423499.0","4178005.0","37.746153","-105.868353","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008181", +"2008182","82CW003 WELL NO 03","FIELD #43","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0003","24601-F","19-05716-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","3","40.0 N","10.0 E","N","","","","","424118.0","4177980.0","37.745979","-105.861325","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008182", +"2008183","82CW003 WELL NO 04","FIELD #43","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0003","23364-F","19-05716-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","3","40.0 N","10.0 E","N","","","","","424299.0","4177979.0","37.745985","-105.859271","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008183", +"2008185","82CW012 WELL NO 01","#10 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0012","25183-F","10190284","VAN EDMONDS LLC (BIGELOW, JAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","25","41.0 N","9.0 E","N","","","","","417068.0","4180388.0","37.767068","-105.941613","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008185", +"2008186","82CW015 WELL NO 01","MS3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0015","24699-F","082017002188, 100113, 18-06835-08","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","NE","NE","NE","27","39.0 N","9.0 E","N","","","","","414673.0","4162227.0","37.603179","-105.966676","08/15/2016 14:23","https://dwr.state.co.us/Tools/Structures/2008186", +"2008187","82CW015 WELL NO 02","MS3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0015","24700-F","082017002188, 100113, 18-06835-08","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","27","39.0 N","9.0 E","N","","","","","414498.0","4162241.0","37.603289","-105.968660","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008187", +"2008188","82CW017 WELL NO 01R","9 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0017","30338-F, 37045-F","11060583/11060612","NICKEL, GILBERT; NICKEL, ROYCE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","23","40.0 N","6.0 E","N","","","","","386968.0","4173422.0","37.701072","-106.282215","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008188", +"2008189","82CW017 WELL NO 02R","SCHMIDT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0017","30339-F","10061890/10062073","ENSZ, GENE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","23","40.0 N","6.0 E","N","","","","","386127.0","4173435.0","37.701085","-106.291755","08/10/2020 14:18","https://dwr.state.co.us/Tools/Structures/2008189", +"2008190","82CW017 WELL NO 03R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0017","30340-F, 41845-F, 41845-F-R","052013002275","SCHMIDT, BEN; SCHMIDT, LAVERNE D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","23","40.0 N","6.0 E","N","","","","","386945.0","4172622.0","37.693860","-106.282352","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008190", +"2008191","82CW017 WELL NO 04R","HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0017","9153-AD, 30341-F, 37047-F, 37047-F-R","10061889/10062074","ENSZ, GENE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","23","40.0 N","6.0 E","N","","","","","386136.0","4172647.0","37.693985","-106.291530","08/10/2020 14:19","https://dwr.state.co.us/Tools/Structures/2008191", +"2008192","82CW017 WELL NO 05R","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0017","30342-F","12230552/07242520","ENSZ, GENE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","22","40.0 N","6.0 E","N","","","","","385304.0","4172626.0","37.693692","-106.300961","08/10/2020 14:19","https://dwr.state.co.us/Tools/Structures/2008192", +"2008193","82CW0018 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0038, 82CW0018","22261-F","09061315/12212590","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","20","40.0 N","9.0 E","N","","","","","411316.0","4173182.0","37.701589","-106.006033","03/29/2023 11:25","https://dwr.state.co.us/Tools/Structures/2008193", +"2008195","82CW030 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0030","24017-F","12204468/10061039","GSR FARMS INC (BEIRIGER, JEFF)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","36","41.0 N","9.0 E","N","","","","","417059.0","4179584.0","37.759822","-105.941624","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008195", +"2008196","82CW030 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0030","24016-F","14-11230-8","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","36","41.0 N","9.0 E","N","","","","","417868.0","4179579.0","37.759850","-105.932440","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008196", +"2008197","82CW030 WELL NO 03","MYERS 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0030","25062-F","11060501/062019001002","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","36","41.0 N","9.0 E","N","","","","","417819.0","4178774.0","37.752591","-105.932905","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008197", +"2008198","82CW030 WELL NO 04","MYERS 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0030","25061-F, 25061-F-R","11060544/11060625","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","36","41.0 N","9.0 E","N","","","","","417025.0","4178786.0","37.752627","-105.941918","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008198", +"2008207","82CW119 WELL NO 01","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0119","18912-F","09062777/10060082","ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","5","40.0 N","7.0 E","N","","","","","391056.0","4177392.0","37.737341","-106.236447","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008207", +"2008213","82CW125 WELL NO 03","W-3 MIDDLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0010, 82CW0125","19982-F, 19982-F-R","01-035238","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","6","40.0 N","10.0 E","N","","","","","418270.0","4177711.0","37.743051","-105.927666","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008213", +"2008214","82CW132 WELL NO 03","J2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0132","25208-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NW","NE","36","40.0 N","10.0 E","N","","","","","426999.0","4169969.0","37.674015","-105.827823","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008214", +"2008215","82CW132 WELL NO 04","J2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0132","25060-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","20","ALAMOSA","","","","NE","NE","36","40.0 N","10.0 E","N","","","","","427443.0","4170031.0","37.674609","-105.822795","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008215", +"2008216","82CW137 WELL NO 03","#20 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0137","25103-F","09061920/09061987","BEIRIGER, BRANDON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","8","40.0 N","10.0 E","N","","","","","420253.0","4176359.0","37.731042","-105.905013","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008216", +"2008220","82CW161 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0161","24766-F","06123272/092017001243","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","25","39.0 N","9.0 E","N","","","","","416662.0","4161043.0","37.592691","-105.944011","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008220", +"2008221","82CW161 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0161","24758-F","06123272/092017001243","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","25","39.0 N","9.0 E","N","","","","","416758.0","4161048.0","37.592745","-105.942924","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008221", +"2008222","82CW161 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0161","24765-F","06123272/092017001243","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","25","39.0 N","9.0 E","N","","","","","416847.0","4161043.0","37.592708","-105.941915","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008222", +"2008223","82CW162 WELL NO 04","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0162","24770-F","","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SE","25","39.0 N","9.0 E","N","","","","","417510.0","4161018.0","37.592542","-105.934403","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008223", +"2008224","82CW162 WELL NO 05","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0162","24773-F","","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","SE","25","39.0 N","9.0 E","N","","","","","417613.0","4161016.0","37.592534","-105.933237","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008224", +"2008225","82CW162 WELL NO 06","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0162","24769-F","","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","SE","25","39.0 N","9.0 E","N","","","","","417713.0","4161018.0","37.592561","-105.932104","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008225", +"2008226","82CW163 WELL NO 13","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0163","24772-F","17-11563-06","MARTINEZ, HILARIO A. & JOSE","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","39.0 N","10.0 E","N","","","","","419914.0","4161802.0","37.599821","-105.907261","08/06/2020 16:43","https://dwr.state.co.us/Tools/Structures/2008226", +"2008229","82CW164 WELL NO 16","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0164","24763-F","07-8-1397","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","29","39.0 N","10.0 E","N","","","","","419928.0","4160991.0","37.592513","-105.907014","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008229", +"2008230","82CW164 WELL NO 17","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0164","24760-F","07-8-1397","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","29","39.0 N","10.0 E","N","","","","","420031.0","4161003.0","37.592630","-105.905849","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008230", +"2008231","82CW164 WELL NO 18","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0164","24764-F","07-8-1397","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SW","29","39.0 N","10.0 E","N","","","","","420126.0","4160990.0","37.592521","-105.904771","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008231", +"2008235","W3776 WELL NO 01","FIELD 3 S CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0169","17085-F","04060167/04060136","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","8","39.0 N","9.0 E","N","","","","","410334.0","4166733.0","37.643375","-106.016378","01/07/2009 11:51","https://dwr.state.co.us/Tools/Structures/2008235", +"2008238","82CW182 WELL NO 01","#28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0182","23238-F","15-07888-8","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","32","41.0 N","10.0 E","N","","","","","420661.0","4178393.0","37.749408","-105.900605","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008238", +"2008239","82CW187 WELL NO 02","KIRKPATRICK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0187","21579-F","","MYERS, JANET","RGWCD SD1","10/31/2009","10/31/2023","3","20","SAGUACHE","","","","SW","NW","28","41.0 N","9.0 E","N","","","","","412160.0","4181198.0","37.773910","-105.997429","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008239", +"2008240","82CW188 WELL NO 01","PINKY2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0188","22543-F","06-6-1907","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","39.0 N","10.0 E","N","","","","","420124.0","4167500.0","37.651191","-105.905505","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008240", +"2008241","82CW188 WELL NO 02","PINKY 1 @ PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0188","22542-F","07-6-1005","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","6","39.0 N","10.0 E","N","","","","","419308.0","4167509.0","37.651201","-105.914756","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008241", +"2008243","83CW002 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0002","22599-F","06123290/12212589, 07202105/12212616","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","12","40.0 N","9.0 E","N","","","","","416975.0","4176393.0","37.731057","-105.942213","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008243", +"2008251","83CW010 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0010","17466-F","100893/12061369","ORTEGA, KATHERINE; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","32","40.0 N","9.0 E","N","","","","","411226.0","4169954.0","37.672489","-106.006661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008251", +"2008252","83CW010 WELL NO 07","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0010","22562-F","100891/12061367","ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","39.0 N","9.0 E","N","","","","","411192.0","4168349.0","37.658022","-106.006851","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008252", +"2008254","83CW26 WELL NO. 01","B7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0026","23702-F","12061165/12061407","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","4","40.0 N","8.0 E","N","","","","","402828.0","4176864.0","37.733909","-106.102796","11/05/2011 21:29","https://dwr.state.co.us/Tools/Structures/2008254", +"2008258","83CW030 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0030","24667-F","15-07395-8","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","9","40.0 N","9.0 E","N","","","","","412940.0","4175581.0","37.723364","-105.987900","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008258", +"2008262","83CW065 WELL NO 05","33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0065","24397-F","03062365/03062389","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NE","32","41.0 N","9.0 E","N","","","","","411359.0","4179605.0","37.759476","-106.006328","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008262", +"2008266","84CW001 WELL NO 01","CHICO 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0001","20157-F","12204455/06214534-100239","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","33","40.0 N","9.0 E","N","","","","","412869.0","4169948.0","37.672593","-105.988032","08/20/2003 11:31","https://dwr.state.co.us/Tools/Structures/2008266", +"2008270","84CW024 WELL N0 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24939-F","11061462/05063050","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","36","40.0 N","9.0 E","N","","","","","417700.0","4169127.0","37.665640","-105.933165","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008270", +"2008271","84CW024 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24938-F","11061462/05063050","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","36","40.0 N","9.0 E","N","","","","","417696.0","4168941.0","37.663963","-105.933189","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008271", +"2008272","84CW024 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24940-F","062017001231/11060687","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","36","40.0 N","9.0 E","N","","","","","416896.0","4169119.0","37.665495","-105.942279","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008272", +"2008273","84CW024 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24941-F","062017001231/11060687","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","36","40.0 N","9.0 E","N","","","","","416895.0","4168937.0","37.663855","-105.942269","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008273", +"2008274","84CW024 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24942-F","12062607/062019001000","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","36","40.0 N","9.0 E","N","","","","","416900.0","4169876.0","37.672318","-105.942320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008274", +"2008275","84CW024 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","24943-F","12062607/062019001000","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","36","40.0 N","9.0 E","N","","","","","416871.0","4169693.0","37.670666","-105.942628","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008275", +"2008276","84CW024 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","25210-F","11061462/05063050","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","36","40.0 N","9.0 E","N","","","","","417518.0","4169125.0","37.665606","-105.935228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008276", +"2008277","84CW024 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0024","25212-F","062017001231/11060687","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","36","40.0 N","9.0 E","N","","","","","416714.0","4169116.0","37.665452","-105.944342","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008277", +"2008283","84CW122 WELL NO 01","FKA WDID 2014200 #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0122","17033-F, 37139-F","12062607/062019001000","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NW","36","40.0 N","9.0 E","N","","","","","416986.0","4170149.0","37.674786","-105.941376","06/19/2013 09:42","https://dwr.state.co.us/Tools/Structures/2008283", +"2008285","85CW015 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0015","25063-F","05063009/05063049","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","3","40.0 N","10.0 E","N","","","","","424278.0","4177201.0","37.738972","-105.859428","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008285", +"2008286","85CW015 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0015","25064-F","05063009/05063049","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","3","40.0 N","10.0 E","N","","","","","424463.0","4177202.0","37.738996","-105.857329","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008286", +"2008287","85CW015 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0015","25065-F","04060840/04201663","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","3","40.0 N","10.0 E","N","","","","","423495.0","4177202.0","37.738916","-105.868314","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008287", +"2008288","85CW015 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0015","25066-F","04060840/04201663","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","3","40.0 N","10.0 E","N","","","","","423320.0","4177206.0","37.738937","-105.870300","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008288", +"2008289","85CW016 WELL NO 03","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0016","25012-F","11060537/05201411","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","2","40.0 N","9.0 E","N","","","","","416198.0","4177198.0","37.738241","-105.951122","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008289", +"2008290","85CW018 WELL NO 06","FIELD 14 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0018","22783-F","12212661/12230548","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","39.0 N","9.0 E","N","","","","","411143.0","4165120.0","37.628917","-106.007013","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008290", +"2008291","85CW0020 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0038, 85CW0020, 99CW0037","22253-F","09061281","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","40.0 N","9.0 E","N","","","","","411266.0","4172386.0","37.694410","-106.006503","03/29/2023 11:09","https://dwr.state.co.us/Tools/Structures/2008291", +"2008292","85CW021 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0021","24709-F","07-8-1552","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","4","39.0 N","10.0 E","N","","","","","421737.0","4167491.0","37.651249","-105.887221","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008292", +"2008297","85CW041 WELL NO 01","FMIL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","85CW0041","22523-F","21-06187-06","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","10","40.0 N","10.0 E","N","","","","","423089.0","4176304.0","37.730789","-105.872827","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008297", +"2008298","85CW041 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0035, 85CW0041","22406-F","09061284/09061394","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","11","40.0 N","10.0 E","N","","","","","425852.0","4176399.0","37.731873","-105.841484","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008298", +"2008299","85CW041 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","85CW0041","24400-F","05-8-3474","SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","29","41.0 N","10.0 E","N","","","","","420270.0","4181188.0","37.774563","-105.905350","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008299", +"2008302","86CW014 WELL NO 06R","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","86CW0014","1326-R-R","22-02717-8","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","16","40.0 N","8.0 E","N","","","","","402397.0","4174836.0","37.715587","-106.107415","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008302", +"2008306","W0006 WELL NO 02","REHMER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0006","12455-F","11060518/11060689","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","14","40.0 N","7.0 E","N","","","","","396311.0","4173799.0","37.705574","-106.176306","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008306", +"2008308","W0008 WELL NO 02","B6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0003, W0008","6127-R, 6127-R-R, 86634-F","08061996/08062021","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","9","40.0 N","8.0 E","N","","","","","402822.0","4176401.0","37.729736","-106.102802","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008308", +"2008310","W0008 WELL NO 06","B5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0003, W0008","6131-R, 6131-R-R","100053/10060117","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","7","40.0 N","8.0 E","N","","","","","399573.0","4176253.0","37.728052","-106.139646","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008310", +"2008317","W0011 WELL NO 01","CIRCLE 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0011","1495-R-R","10063541/10063708","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY; MYERS, SHIRLEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","36","41.0 N","8.0 E","N","","","","","406910.0","4179270.0","37.756015","-106.056786","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008317", +"2008319","W0022 WELL NO 01","KAVANAUGH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0022","190-R-R","11060547/11060633","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","8","39.0 N","8.0 E","N","","","","","400688.0","4166867.0","37.643590","-106.125716","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008319", +"2008320","W0022 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0022","191-R","04080416","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","7","39.0 N","8.0 E","N","","","","","400280.0","4167261.0","37.647096","-106.130393","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008320", +"2008322","W0022 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0022","6051-F, 6051-F-R","11060547/11060633","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","8","39.0 N","8.0 E","N","","","","","400412.0","4167253.0","37.647039","-106.128896","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008322", +"2008336","W0033 WELL NO 01","#2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0033","1466-R","14-14348-6","GRAND SLAM RANCH, LLC (HEMMERLING, MANNY); HEMMERLING, MANNY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","26","40.0 N","6.0 E","N","","","","","385941.0","4171043.0","37.679507","-106.293490","01/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2008336", +"2008344","W0046 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0046","1010-R-R","100158/10061078","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","40.0 N","8.0 E","N","","","","","405252.0","4175192.0","37.719095","-106.075073","02/06/2026 12:49","https://dwr.state.co.us/Tools/Structures/2008344", +"2008348","W0046 WELL NO 05","10 MILE CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0046","2634-F","100141/10061073","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","14","40.0 N","8.0 E","N","","","","","406041.0","4174815.0","37.715779","-106.066074","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008348", +"2008349","W0046 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3005, W0046","3396-F, 3396-F-R","20083555","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","SE","SE","NE","14","40.0 N","8.0 E","N","","","","","406784.0","4174503.0","37.713044","-106.057605","02/06/2026 12:49","https://dwr.state.co.us/Tools/Structures/2008349", +"2008350","W0049 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0049","814-R","10060737/10061037","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","1","39.0 N","7.0 E","N","","","","","397827.0","4168284.0","37.656045","-106.158338","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008350", +"2008355","W0057 WELL NO 01","LOFTON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0057","2979-F","10061929/10062024","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","19","40.0 N","8.0 E","N","","","","","399518.0","4172300.0","37.692423","-106.139724","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008355", +"2008359","W0062 WELL NO 02","TOBE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0062","59-R","09062793/10060078","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","2","39.0 N","7.0 E","N","","","","","395441.0","4168049.0","37.653659","-106.185349","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008359", +"2008361","W0062 WELL NO 04","GRANDAD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0023, W0062","61-R, 86700-F","10060727/10061056, 22013289","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","2","39.0 N","7.0 E","N","","","","","396204.0","4167902.0","37.652421","-106.176680","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008361", +"2008362","W0062 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0024, W0062","62-R, 86842-F","10060720/10061051","KLECKER RANCH, INC.; PB BOND HERITAGE, LLC (KLECKER, PAMELA)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","12","39.0 N","7.0 E","N","","","","","397806.0","4167161.0","37.645923","-106.158418","02/06/2026 12:50","https://dwr.state.co.us/Tools/Structures/2008362", +"2008363","W0063 WELL NO 01","BULL FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0063","1387-R","12062591/12062673","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","31","41.0 N","8.0 E","N","","","","","399602.0","4179481.0","37.757144","-106.139763","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008363", +"2008364","W0063 WELL NO 02","BULL FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0063","1388-R","12062591/12062673","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","31","41.0 N","8.0 E","N","","","","","399600.0","4179320.0","37.755693","-106.139763","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008364", +"2008365","W0063 WELL NO 03","SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0063","1389-R","04061994/04062023","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","29","41.0 N","8.0 E","N","","","","","401224.0","4180102.0","37.762917","-106.121437","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008365", +"2008376","W0070 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0070","12162-R, 6834-R-R, 6834-R-R","06-8-3861","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","24","40.0 N","7.0 E","N","","","","","397917.0","4172251.0","37.691804","-106.157873","07/31/2015 13:25","https://dwr.state.co.us/Tools/Structures/2008376", +"2008377","W0075 WELL NO 02","HOME - N CORNER WELL, YARD AND TREES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0075","1030-R","09061305/09061405, 19857624","MYERS, JANET","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","6","40.0 N","9.0 E","N","","","","","408523.0","4177789.0","37.742832","-106.038291","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008377", +"2008378","W0075 WELL NO 03","HOME - S CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0075","3892-F","12204452/12204376-10019","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY; MYERS, JANET","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","6","40.0 N","9.0 E","N","","","","","408520.0","4177604.0","37.741164","-106.038302","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008378", +"2008380","W0077 WELL NO 02","PIVOT WH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0077","972-R","06-8-3515","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","39.0 N","7.0 E","N","","","","","396956.0","4164520.0","37.622029","-106.167679","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008380", +"2008381","W0077 WELL NO 03","PIVOT E H","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0077","973-R-R","06-8-3518","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","13","39.0 N","7.0 E","N","","","","","398158.0","4164491.0","37.621901","-106.154057","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008381", +"2008385","W0079 WELL NO 02","SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0079","7234-R","23080163","CSU - SLV RESEARCH CENTER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","18","40.0 N","8.0 E","N","","","","","399546.0","4173694.0","37.704988","-106.139599","08/20/2015 09:05","https://dwr.state.co.us/Tools/Structures/2008385", +"2008386","W0079 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0079","5889-F","11060522/11060632","MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","19","40.0 N","8.0 E","N","","","","","399534.0","4173184.0","37.700391","-106.139664","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008386", +"2008389","W0083 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0083","4650-F","03061819/03061822","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","11","39.0 N","9.0 E","N","","","","","415240.0","4165855.0","37.635928","-105.960674","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008389", +"2008390","W0083 WELL NO 02","#8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0083","4646-F","03062378/03062379","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","10","39.0 N","9.0 E","N","","","","","413574.0","4165871.0","37.635917","-105.979556","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008390", +"2008391","W0083 WELL NO 03","#7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0083","9275-F","03062366/03062399, 12062569/12062737","TILLMAN, STEVEN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","10","39.0 N","9.0 E","N","","","","","413967.0","4165635.0","37.633827","-105.975074","02/06/2026 12:50","https://dwr.state.co.us/Tools/Structures/2008391", +"2008392","W0083 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0083","9459-F","07-10-1060","TILLMAN, STEVEN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","10","39.0 N","9.0 E","N","","","","","413986.0","4165727.0","37.634658","-105.974870","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008392", +"2008397","W2013 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0090","336-R","03062363/03062396","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","31","40.0 N","9.0 E","N","","","","","409186.0","4169022.0","37.663890","-106.029674","01/07/2009 13:52","https://dwr.state.co.us/Tools/Structures/2008397", +"2008399","W0090 WELL NO 03","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0090","338-R","10063592/10063685","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","36","40.0 N","8.0 E","N","","","","","407572.0","4169153.0","37.664910","-106.047987","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008399", +"2008401","W0090 WELL NO 05","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0090","6234-F","10063592/10063685","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","36","40.0 N","8.0 E","N","","","","","407958.0","4169157.0","37.664985","-106.043612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008401", +"2008403","W0090 WELL NO 07","FIELD 1N SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0090","2457-F","06-11601-2","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","31","40.0 N","9.0 E","N","","","","","409186.0","4168828.0","37.662142","-106.029649","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008403", +"2008406","W0090 WELL NO 10","FIELD 1 N CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0090","15207-F","03062363/03062396","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","31","40.0 N","9.0 E","N","","","","","409581.0","4169170.0","37.665263","-106.025214","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008406", +"2008407","W0091 WELL NO 01","NORTH ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0091","1813-R, 1813-R-R","24-00565-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","40.0 N","8.0 E","N","","","","","407176.0","4169939.0","37.671953","-106.052577","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008407", +"2008410","W0091 WELL NO 04","ROSE QUARTER WELL, ROSE/HOLL FIRE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0091","1816-R","01062047/01062063, 07-8-1151","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","36","40.0 N","8.0 E","N","","","","","406766.0","4169351.0","37.666613","-106.057150","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008410", +"2008411","W0091 WELL NO 05","NORTH ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0091","13608-F","24-00565-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","36","40.0 N","8.0 E","N","","","","","406870.5","4169658.0","37.669390","-106.056010","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008411", +"2008413","W0091 WELL NO 07","ROSE, ROSE QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0091","2924-F, 87442-F","212029034","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","40.0 N","8.0 E","N","","","","","406769.0","4169573.0","37.668614","-106.057144","10/18/2021 12:44","https://dwr.state.co.us/Tools/Structures/2008413", +"2008414","W0091 WELL NO 08","ROSE, ROSE QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0091","15257-F","01062047/01062063","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","36","40.0 N","8.0 E","N","","","","","407166.0","4169176.0","37.665076","-106.052593","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008414", +"2008420","W0095 WELL NO 03","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0095","5510-F","10113836/12230540","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","23","40.0 N","8.0 E","N","","","","","405210.0","4172983.0","37.699184","-106.075262","05/18/2016 13:48","https://dwr.state.co.us/Tools/Structures/2008420", +"2008422","W0097 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0097","5499-F","06-8-3875","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","19","39.0 N","9.0 E","N","","","","","408300.0","4163160.0","37.610974","-106.038982","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008422", +"2008423","W0097 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0097","5935-R-R","06-8-3875","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","19","39.0 N","9.0 E","N","","","","","408305.0","4163812.0","37.616851","-106.039007","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008423", +"2008425","W0097 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0097","12698-F","06-8-4928","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","19","39.0 N","9.0 E","N","","","","","409115.0","4163210.0","37.611506","-106.029755","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008425", +"2008427","W0098 WELL NO 02","FELMLEE N.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0098","5446-F","03063675, GP10-2560-6/PUMP PAULSON","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MICHAEL L. AND SHARON K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","25","41.0 N","7.0 E","N","","","","","397213.0","4180181.0","37.763186","-106.166977","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008427", +"2008428","W0098 WELL NO 03","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0098","10480-F","03060404/149608","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, TERRY & KATE","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","","SE","SW","25","41.0 N","7.0 E","N","","","","","398010.0","4180206.0","37.763501","-106.157934","07/22/2014 11:47","https://dwr.state.co.us/Tools/Structures/2008428", +"2008429","W0098 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0098","20403-R, 20403-R-R","03063664","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","","SW","NW","36","41.0 N","7.0 E","N","","","","","397253.0","4179326.0","37.755486","-106.166402","07/31/2015 09:18","https://dwr.state.co.us/Tools/Structures/2008429", +"2008433","W0099 WELL NO 04","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0099","20896-U","06-8-4924","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","10","39.0 N","8.0 E","N","","","","","403509.0","4166439.0","37.640034","-106.093688","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008433", +"2008435","W0099 WELL NO 07","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0001, W0099","11688-F","07-8-1499, 22-03797-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","10","39.0 N","8.0 E","N","","","","","404287.0","4166056.0","37.636663","-106.084821","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008435", +"2008436","W0099 WELL NO 10","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0099","10997-F","22-04597-08, GP07-08-1559","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","39.0 N","8.0 E","N","","","","","407517.0","4165416.0","37.631227","-106.048137","01/27/2004 09:24","https://dwr.state.co.us/Tools/Structures/2008436", +"2008437","W0099 WELL NO 11","FIREWELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0099","8563-R","06-6-2120","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","13","39.0 N","8.0 E","N","","","","","406731.0","4165521.0","37.632094","-106.057057","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008437", +"2008438","W0099 WELL NO 12","#4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0099","5520-F","06-8-3860","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","13","39.0 N","8.0 E","N","","","","","406729.0","4165434.0","37.631309","-106.057069","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008438", +"2008439","W0100 WELL NO 01","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0100","5585-F","","ENTZ, LOUIE","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","NE","3","39.0 N","9.0 E","N","","","","","414402.0","4168295.0","37.657840","-105.970456","02/19/2026 10:09","https://dwr.state.co.us/Tools/Structures/2008439", +"2008440","W0100 WELL NO 02","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0100","5586-F","","ENTZ, LOUIE","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","NW","3","39.0 N","9.0 E","N","","","","","413597.0","4168317.0","37.657963","-105.979584","02/19/2026 10:09","https://dwr.state.co.us/Tools/Structures/2008440", +"2008441","W0100 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0100","4024-F","","ENTZ, LOUIE","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","SW","SW","NW","3","39.0 N","9.0 E","N","","","","","413217.0","4168063.0","37.655638","-105.983862","02/19/2026 10:10","https://dwr.state.co.us/Tools/Structures/2008441", +"2008442","21CW0015 WELL NO 4","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, W0100","927-R","18214028","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","39.0 N","9.0 E","N","","","","","413224.0","4167904.0","37.654206","-105.983763","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2008442", +"2008444","W0102 WELL NO 02","CHICO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","3974-F","12212655/06214533","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","29","40.0 N","9.0 E","N","","","","","410915.0","4170905.0","37.681030","-106.010303","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008444", +"2008446","W0102 WELL NO 04","FIELD 3N CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4644-F","08061969/08062014, 10061951/10062027","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","28","40.0 N","9.0 E","N","","","","","412055.0","4170754.0","37.679779","-105.997358","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008446", +"2008447","W0102 WELL NO 05","FIELD 3N SUPPL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","10557-F","08061969/08062014, 10061951/10062027","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","28","40.0 N","9.0 E","N","","","","","411672.0","4170775.0","37.679931","-106.001703","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008447", +"2008448","W0102 WELL NO 06","CHICO 4C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4652-F","10063607/10063633, 10063612/052019002622","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","33","40.0 N","9.0 E","N","","","","","412028.0","4169156.0","37.665375","-105.997471","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008448", +"2008449","W0102 WELL NO 07","CHICO 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4653-F","06200680/10063658-100535, 10063617/10063636","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","33","40.0 N","9.0 E","N","","","","","412040.0","4169949.0","37.672523","-105.997431","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008449", +"2008450","W0102 WELL NO 08","CHICO 3T","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0102","11131-F","06200680/10063658-100535, 10063617/10063636","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","33","40.0 N","9.0 E","N","","","","","411657.0","4169961.0","37.672594","-106.001775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008450", +"2008451","W0102 WELL NO 09","CHICO4C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0102","11132-F","10063607/10063633, 10063612/052019002622","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","33","40.0 N","9.0 E","N","","","","","411642.0","4169192.0","37.665662","-106.001852","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008451", +"2008452","W0102 WELL NO 10","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","11227-R","100939","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","4","39.0 N","9.0 E","N","","","","","411600.0","4167382.0","37.649346","-106.002109","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008452", +"2008455","W0102 WELL NO 14","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4647-F","02060443/02060475","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","4","39.0 N","9.0 E","N","","","","","412013.0","4168325.0","37.657885","-105.997541","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008455", +"2008456","W0102 WELL NO 15","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4542-F","03062356/03062385","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SE","4","39.0 N","9.0 E","N","","","","","412397.0","4167454.0","37.650072","-105.993084","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008456", +"2008457","W0102 WELL NO 16","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","5481-F","100939","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","4","39.0 N","9.0 E","N","","","","","412005.0","4167524.0","37.650665","-105.997535","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008457", +"2008458","W0102 WELL NO 17","HUNTER SESSUMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","5479-F","03062356/03062385","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","4","39.0 N","9.0 E","N","","","","","412792.0","4167497.0","37.650497","-105.988612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008458", +"2008459","W0102 WELL NO 18","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","13372-F","02060443/02060475","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","4","39.0 N","9.0 E","N","","","","","411623.0","4168350.0","37.658072","-106.001965","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008459", +"2008461","W0102 WELL NO 20","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","11230-R","11061463/09060756","LOBO FARM LLC; MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","9","39.0 N","9.0 E","N","","","","","412392.0","4166817.0","37.644331","-105.993064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008461", +"2008462","W0102 WELL NO 21","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","13711-F","11061463/09060756","LOBO FARM LLC; MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","9","39.0 N","9.0 E","N","","","","","412385.0","4166569.0","37.642095","-105.993113","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008462", +"2008463","W0102 WELL NO 22","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","15231-F","11061463/09060756","LOBO FARM LLC; MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","9","39.0 N","9.0 E","N","","","","","412777.0","4166677.0","37.643106","-105.988684","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008463", +"2008465","W0102 WELL NO 24","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","3455-F","20-07845-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NE","NW","10","39.0 N","9.0 E","N","","","","","414009.0","4166791.0","37.644249","-105.974734","07/30/2015 11:01","https://dwr.state.co.us/Tools/Structures/2008465", +"2008466","W0102 WELL NO 25","EAST STEWART","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","4422-F","20-07845-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","10","39.0 N","9.0 E","N","","","","","414409.0","4166678.0","37.643268","-105.970188","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008466", +"2008467","W0102 WELL NO 26","WEST STEWART","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","13373-F","19-081276-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","10","39.0 N","9.0 E","N","","","","","413592.0","4166673.0","37.643147","-105.979446","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008467", +"2008469","W0102 WELL NO 29","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","13376-FP","16-05208-8 -WF PIVOT, 22-07414-06","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SE","NE","10","39.0 N","9.0 E","N","","","","","414792.0","4166523.0","37.641907","-105.965829","10/18/2023 15:56","https://dwr.state.co.us/Tools/Structures/2008469", +"2008473","W0103 WELL NO 03","FIELD #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","13466-F","21-00547","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","27","40.0 N","9.0 E","N","","","","","413356.0","4171156.0","37.683525","-105.982654","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008473", +"2008474","W0103 WELL NO 05","#27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","15237-F","11061713/11061756","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","28","40.0 N","9.0 E","N","","","","","412921.0","4171553.0","37.687062","-105.987634","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008474", +"2008476","W0103 WELL NO 07","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0103","11885-F","062013000086, 12061155/12061448","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","28","40.0 N","9.0 E","N","","","","","411692.0","4171695.0","37.688224","-106.001588","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008476", +"2008478","W0103 WELL NO 10","FIELD #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","5564-F","21-00547","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","27","40.0 N","9.0 E","N","","","","","413746.0","4171535.0","37.686978","-105.978276","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008478", +"2008479","W0103 WELL NO 11","2 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","3945-F","072014000383/06214541","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","33","40.0 N","8.0 E","N","","","","","401918.0","4169394.0","37.666495","-106.112116","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008479", +"2008480","W0103 WELL NO 12","#27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","5277-F","11061713/11061756","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","28","40.0 N","9.0 E","N","","","","","412480.0","4171205.0","37.683884","-105.992593","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008480", +"2008481","W0103 WELL NO 13","#27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","5445-F","11061713/11061756","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","28","40.0 N","9.0 E","N","","","","","412482.0","4171485.0","37.686407","-105.992604","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008481", +"2008482","W0103 WELL NO 14","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0103","4870-F","062013000086, 12061155/12061448","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","28","40.0 N","9.0 E","N","","","","","411689.0","4171495.0","37.686422","-106.001598","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008482", +"2008484","W0106 WELL NO 01","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0106","20927-R","22-04598-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","15","39.0 N","8.0 E","N","","","","","403514.0","4165541.0","37.631942","-106.093513","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008484", +"2008486","W0106 WELL NO 04","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0106","5444-F","22-04598-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","15","39.0 N","8.0 E","N","","","","","403498.0","4165277.0","37.629561","-106.093660","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008486", +"2008502","W0115 WELL NO 04","9 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0115","54-R","01061418/01061430","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","23","40.0 N","8.0 E","N","","","","","406017.0","4172962.0","37.699078","-106.066107","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008502", +"2008503","W0115 WELL NO 05","18 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0115","55-R","01061422/01061436","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","34","40.0 N","8.0 E","N","","","","","403545.0","4169968.0","37.671840","-106.093747","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008503", +"2008504","W0115 WELL NO 06","16 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0115","5463-F","01061409/01061426","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","32","40.0 N","8.0 E","N","","","","","401105.0","4169696.0","37.669129","-106.121373","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008504", +"2008516","W0122 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0122","6266-R","09062752/9212234","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","17","39.0 N","8.0 E","N","","","","","401030.0","4164176.0","37.619376","-106.121475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008516", +"2008525","W0130 WELL NO 02","TEDD'S HOUSE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0130","6085-R","07060373/07060935","HENNIGH, TEDD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","26","40.0 N","7.0 E","N","","","","","396267.0","4171115.0","37.681382","-106.176423","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008525", +"2008527","W0130 WELL NO 04","E7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0130","6086-R","05060234/05060257","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","25","40.0 N","7.0 E","N","","","","","397139.0","4170492.0","37.675866","-106.166447","10/29/2007 14:01","https://dwr.state.co.us/Tools/Structures/2008527", +"2008528","W0131 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0131","1351-R","09062790/10060070","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","17","39.0 N","8.0 E","N","","","","","400255.0","4165453.0","37.630800","-106.130430","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008528", +"2008529","W0131 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0131","1354-R","09062787/10060094","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","18","39.0 N","8.0 E","N","","","","","399416.0","4164640.0","37.623382","-106.139825","03/02/2021 14:59","https://dwr.state.co.us/Tools/Structures/2008529", +"2008535","W0136 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0136","10627-R","09212322/12212614","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","8","39.0 N","8.0 E","N","","","","","401098.0","4167133.0","37.646031","-106.121105","08/03/2023 14:06","https://dwr.state.co.us/Tools/Structures/2008535", +"2008539","W0137 WELL NO 03","17 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0137","2512-F, 2512-F-R","01061403/052018001070","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","33","40.0 N","8.0 E","N","","","","","402724.0","4169801.0","37.670248","-106.103033","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008539", +"2008551","W0140 WELL NO PUMP 02","CIRCLE 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0140","6075-F","09212327/12212637","MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","33","41.0 N","8.0 E","N","","","","","402901.0","4178830.0","37.751633","-106.102231","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008551", +"2008552","W0140 WELL NO PUMP 05","03 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0140","6152-R","11061488/05063052","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","34","41.0 N","8.0 E","N","","","","","404451.0","4179348.0","37.756465","-106.084707","02/06/2026 12:51","https://dwr.state.co.us/Tools/Structures/2008552", +"2008553","W0140 WELL NO PUMP 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0140","5237-F","03063658/03063700","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","7","40.0 N","9.0 E","N","","","","","409305.0","4176166.0","37.728283","-106.029214","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008553", +"2008556","W0140 WELL NO PUMP 11","01 WELL 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0140","1723-R","04060156","MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","","SW","SE","28","41.0 N","8.0 E","N","","","","","402846.0","4180187.0","37.763856","-106.103036","02/05/2015 10:28","https://dwr.state.co.us/Tools/Structures/2008556", +"2008566","W0148 WELL NO PUMP 03","PAUL'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0148","6483-R-R","09061293/09061396","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","11","40.0 N","8.0 E","N","","","","","405674.0","4176397.0","37.729998","-106.070442","03/14/2002 00:00","https://dwr.state.co.us/Tools/Structures/2008566", +"2008567","W0148 WELL NO PUMP 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0148","6485-R","07-10-1170","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","11","40.0 N","8.0 E","N","","","","","405261.0","4176036.0","37.726702","-106.075081","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008567", +"2008571","W0151 WELL NO 02","STOEBER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0151","10727-R-R","12062628/12062644","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","10","39.0 N","7.0 E","N","","","","","394577.0","4167287.0","37.646694","-106.195031","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008571", +"2008574","W0153 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0153","13004-R","06-8-3876","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","13","39.0 N","8.0 E","N","","","","","407494.0","4164334.0","37.621474","-106.048261","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008574", +"2008576","W0156 WELL NO 01","HOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW3010, W0156","20782-R, 88065-F, 89516-F","12061167/12061428-100753, 12061177/12061412-100748","BAUTISTA, DONNIE & CARLY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NE","27","41.0 N","10.0 E","N","","","","","424586.0","4181606.0","37.778696","-105.856390","08/06/2020 16:48","https://dwr.state.co.us/Tools/Structures/2008576", +"2008581","W0162 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0162","1644-R","03061838/03061816","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","27","41.0 N","8.0 E","N","","","","","404442.0","4180265.0","37.764728","-106.084930","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008581", +"2008582","PERMIT 39684-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","39684-F","232081404","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","2","39.0 N","7.0 E","N","","","","","395488.0","4168834.0","37.660738","-106.184928","02/06/2026 12:52","https://dwr.state.co.us/Tools/Structures/2008582", +"2008584","W0165 WELL NO 02","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0165","6022-R","10061919/12212640","KOLB, BILL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","33","40.0 N","7.0 E","N","","","","","392200.0","4169999.0","37.670856","-106.222371","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008584", +"2008590","W0172 WELL NO 01","ENCANTADA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0172","4845-F","11061471/11061565","COLVILLE, DAVID; DAVIE, RICK","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","27","40.0 N","6.0 E","N","","","","","384148.0","4172055.0","37.688402","-106.313979","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008590", +"2008591","W0173 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0173","7302-R","06-8-3753","ROCHELLE, DELMER L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","16","40.0 N","6.0 E","N","","","","","383348.0","4174877.0","37.713729","-106.323503","08/06/2020 16:47","https://dwr.state.co.us/Tools/Structures/2008591", +"2008593","W0175 WELL NO 01","B3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3036, W0175","913-R","10061947/10062054","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","5","40.0 N","8.0 E","N","","","","","400405.0","4177759.0","37.741714","-106.130412","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008593", +"2008595","W0175 WELL NO 04","B4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0175","916-R","03063671/062019000995","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","5","40.0 N","8.0 E","N","","","","","400395.0","4176934.0","37.734278","-106.130413","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008595", +"2008599","W0176 WELL NO 03","BENTON HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0176","1161-R-R","13-14452-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","25","40.0 N","7.0 E","N","","","","","398281.0","4170846.0","37.679184","-106.153549","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008599", +"2008602","W0177 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0177","7264-R","11061413/11061548","KELLER, STEVEN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","27","40.0 N","6.0 E","N","","","","","384533.0","4171888.0","37.686945","-106.309587","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008602", +"2008610","W0183 WELL NO PUMP 02","#17A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0183","1219-R-R","01250683","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","8","40.0 N","9.0 E","N","","","","","410144.0","4176701.0","37.733187","-106.019761","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008610", +"2008613","W0183 WELL NO PUMP 05","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0183","13149-R","03063660/03063687","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","6","40.0 N","9.0 E","N","","","","","409322.0","4176816.0","37.734143","-106.029102","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008613", +"2008614","W0183 WELL NO PUMP 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0183","3876-F","03063648/03063694","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","8","40.0 N","9.0 E","N","","","","","410151.0","4176409.0","37.730557","-106.019645","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008614", +"2008615","W0183 WELL NO PUMP 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0025, W0183","5638-F","09062732/10060135","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2025","10/31/2025","3","20","ALAMOSA","","","","SE","SE","6","40.0 N","9.0 E","N","","","","","410134.0","4177064.0","37.736458","-106.019919","02/06/2026 12:52","https://dwr.state.co.us/Tools/Structures/2008615", +"2008616","W0183 WELL NO PUMP 08","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0183","3877-F","09062732/10060135","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","6","40.0 N","9.0 E","N","","","","","410130.0","4176911.0","37.735079","-106.019946","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008616", +"2008617","W0183 WELL NO PUMP 09","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0183","15410-F","03063660/03063687","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","6","40.0 N","9.0 E","N","","","","","409727.0","4177198.0","37.737625","-106.024554","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008617", +"2008620","W0187 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW3023, W0187","741-R, 84483-F","18-08757-06","CANGIANO, BENJAMIN","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","21","39.0 N","8.0 E","N","","","","","401913.0","4163896.0","37.616948","-106.111434","05/31/2023 14:37","https://dwr.state.co.us/Tools/Structures/2008620", +"2008621","W0187 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0187","742-R-R","03-8-4114","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","15","39.0 N","8.0 E","N","","","","","403448.0","4164032.0","37.618336","-106.094062","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008621", +"2008623","W0187 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0187","2235-F","12062555/12062732","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","21","39.0 N","8.0 E","N","","","","","401860.0","4163982.0","37.617717","-106.112046","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008623", +"2008624","W0187 WELL NO 07","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0187","5466-F","03-8-4114","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","15","39.0 N","8.0 E","N","","","","","403459.0","4164161.0","37.619499","-106.093954","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008624", +"2008626","W0193 WELL NO 02","#7 CORNER-#7 PIVOT, 112 STORAGE-B FLOW METER ONLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0193","12503-F, 85730-F","12212677/12204371, 222052732","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","35","41.0 N","8.0 E","N","","","","","406080.0","4178576.0","37.749676","-106.066117","03/11/2022 11:06","https://dwr.state.co.us/Tools/Structures/2008626", +"2008627","W0193 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0193","12727-F","GP13-4808","BARLOW, DWIGHT D.; BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","35","41.0 N","8.0 E","N","","","","","405274.0","4178633.0","37.750107","-106.075272","01/08/2014 16:09","https://dwr.state.co.us/Tools/Structures/2008627", +"2008629","W0193 WELL NO 05","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0193","3235-F","GP13-4808","BARLOW, DWIGHT D.; BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","35","41.0 N","8.0 E","N","","","","","405273.0","4178917.0","37.752666","-106.075321","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008629", +"2008632","W0194 WELL NO 03","YARD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0194","12518-R","8212084","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","30","40.0 N","8.0 E","N","","","","","398703.0","4170606.0","37.677067","-106.148731","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008632", +"2008638","W0196 WELL NO 03","GOODMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0196","21036-U","23-03749-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","2","39.0 N","8.0 E","N","","","","","405950.0","4167741.0","37.652020","-106.066193","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008638", +"2008639","W0196 WELL NO 06","KLECKER SANDERSON 4N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0196","10253-F","03123480/03123485","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","14","39.0 N","9.0 E","N","","","","","416036.0","4165062.0","37.628855","-105.951562","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008639", +"2008641","W0198 WELL NO 02","WEST STEWART","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0198","11232-R","19-081276-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JM FARMLAND LLC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","10","39.0 N","9.0 E","N","","","","","413198.0","4166589.0","37.642352","-105.983902","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008641", +"2008644","W0204 WELL NO PUMP 04","SOUTH HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0204","15445-F","21-00641-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","NE","28","41.0 N","8.0 E","N","","","","","402842.0","4181109.0","37.772165","-106.103205","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008644", +"2008649","W0211 WELL NO 03","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0211","15028-F","06-8-3917","BURRIS, JAKE; ERIC L ELLITHORPE IRREVOCABLE TRUST NO 1 (ELLITHORPE, JEDEDIAH V.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","25","40.0 N","7.0 E","N","","","","","397899.0","4171695.0","37.686792","-106.157999","02/06/2026 12:53","https://dwr.state.co.us/Tools/Structures/2008649", +"2008654","W0222 WELL NO 01","24 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0222","14108-R","100924/1221611","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","9","40.0 N","8.0 E","N","","","","","402008.0","4175698.0","37.723314","-106.111944","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008654", +"2008658","W0223 WELL NO 03","#5 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0223","6141-R, 6141-R-R","14-05864-8","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","27","40.0 N","7.0 E","N","","","","","394701.0","4171420.0","37.683952","-106.194223","04/18/2014 11:07","https://dwr.state.co.us/Tools/Structures/2008658", +"2008660","W0224 WELL NO 03","44-W. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0224","6004-R","03118855","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","19","39.0 N","8.0 E","N","","","","","398594.0","4163844.0","37.616119","-106.149027","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008660", +"2008661","W0224 WELL NO 04"," #44 SW OF PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0224","6005-R","08061972/08062031","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","19","39.0 N","8.0 E","N","","","","","398895.0","4163617.0","37.614106","-106.145586","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008661", +"2008662","W0225 WELL NO 01","#16 MINIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0225","202-R","09061298/09061365","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","25","40.0 N","6.0 E","N","","","","","388165.0","4171792.0","37.686530","-106.268389","05/23/2014 11:10","https://dwr.state.co.us/Tools/Structures/2008662", +"2008663","W0225 WELL NO 02","#16 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0225","204-R","14-09116-8","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","25","40.0 N","6.0 E","N","","","","","388166.0","4172006.0","37.688459","-106.268411","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008663", +"2008669","W0228 WELL NO PUMP 02","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0228","6611-R","10062701/062017001239","CARPENTER, CODY; CARPENTER, KENNETH L.; DAVIS, ELBERT G.; KC FARMS (CARPENTER, KEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","1","40.0 N","8.0 E","N","","","","","406905.0","4176896.0","37.734621","-106.056539","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008669", +"2008670","W0232 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0232","11479-R","23-05830-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","29","39.0 N","9.0 E","N","","","","","410709.0","4161392.0","37.595278","-106.011476","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008670", +"2008671","W0233 WELL NO 02","DEEP WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0233","4359-F, 4359-F-R","08073059/10062008, 11060567/11060600","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","9","40.0 N","7.0 E","N","","","","","393092.0","4175779.0","37.723046","-106.213107","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008671", +"2008677","W0237 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0237","6242-R","10061682/10061079-100139","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","6","40.0 N","8.0 E","N","","","","","398797.0","4177931.0","37.743087","-106.148684","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008677", +"2008679","W0237 WELL NO 03","S. SANDERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW0009, W0237","6244-R","09212328/10062068","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","36","40.0 N","7.0 E","N","","","","","397866.0","4169163.0","37.663971","-106.158019","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008679", +"2008680","W0237 WELL NO 04","SOUTH SANDERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW0009, W0237","6245-R","09212328/10062068","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","36","40.0 N","7.0 E","N","","","","","397866.0","4169250.0","37.664755","-106.158031","08/28/2023 11:10","https://dwr.state.co.us/Tools/Structures/2008680", +"2008683","W0241 WELL NO 01","FIELD #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0241","11338-R","02081356/05201406","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","17","39.0 N","9.0 E","N","","","","","409921.0","4164250.0","37.620958","-106.020753","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008683", +"2008684","W0241 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0241","3869-F","02081356/05201406","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","39.0 N","9.0 E","N","","","","","409923.0","4164513.0","37.623328","-106.020762","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008684", +"2008687","W0243 WELL NO 02","NYE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0243","5969-R","20-06165-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JM FARMLAND LLC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","29","40.0 N","9.0 E","N","","","","","410186.0","4170378.0","37.676209","-106.018504","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008687", +"2008688","W0243 WELL NO 03","FIELD 2N NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0243","6182-R","03062361/03062384, 06-8-3330","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","31","40.0 N","9.0 E","N","","","","","409287.0","4170191.0","37.674435","-106.028674","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008688", +"2008689","W0243 WELL NO 04","FIELD #2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0243","6183-R-R","03062361/03062384","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","31","40.0 N","9.0 E","N","","","","","409595.0","4169951.0","37.672303","-106.025152","12/14/2007 14:41","https://dwr.state.co.us/Tools/Structures/2008689", +"2008692","W0245 WELL NO 01","#2 NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0245","12178-R, 48406-F, 54333-F","04116119/12212587, 05083046/07061178","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","8","39.0 N","10.0 E","N","","","","","420920.0","4166226.0","37.639778","-105.896345","06/21/2004 10:37","https://dwr.state.co.us/Tools/Structures/2008692", +"2008705","W0255 WELL NO PUMP 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0255","845-R-R","052018002643/062019000994","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","1","40.0 N","7.0 E","N","","","","","397973.0","4177702.0","37.740932","-106.158002","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008705", +"2008706","W0255 WELL NO PUMP 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0255","846-R, 846-R-R","052018002643/062019000994","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","1","40.0 N","7.0 E","N","","","","","398011.0","4177781.0","37.741648","-106.157582","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008706", +"2008707","W0258 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0258","11744-R","20-04684","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","35","40.0 N","8.0 E","N","","","","","405535.0","4169189.0","37.665027","-106.071084","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008707", +"2008709","W0258 WELL NO 03","WATERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0258","12138-F","20-04684","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","35","40.0 N","8.0 E","N","","","","","405148.0","4169205.0","37.665131","-106.075474","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008709", +"2008710","W0259 WELL NO 01","CENTER, THIS IS CORRECT PER AMENDED DECREE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0002, W0259","3437-F","03062352","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SE","31","41.0 N","8.0 E","N","","","","","400391.0","4178616.0","37.749435","-106.130689","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008710", +"2008720","W0268 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0268","15800-F","09060717/09060752","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","21","39.0 N","9.0 E","N","","","","","411545.0","4163329.0","37.612815","-106.002241","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008720", +"2008721","W0271 WELL NO 02","HOME QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0271","1593-R, 1593-R-R","10061968/10062004-100302","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","26","40.0 N","7.0 E","N","","","","","396258.0","4171498.0","37.684832","-106.176579","07/03/2024 15:28","https://dwr.state.co.us/Tools/Structures/2008721", +"2008724","W0272 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0272","5558-F","01062040/01062075","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","27","40.0 N","8.0 E","N","","","","","404360.0","4170911.0","37.680423","-106.084631","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008724", +"2008725","W0273 WELL NO 01","MOM'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0273","10421-R","07060389/072017003085","BURKHART FARMS, LLC (BURKHART, NATHAN); DRAKE, LARRY E. & JUDY L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","34","40.0 N","7.0 E","N","","","","","394632.0","4169039.0","37.662488","-106.194661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008725", +"2008727","W0277 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0277","11026-R","01062045","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","35","40.0 N","8.0 E","N","","","","","405553.0","4169982.0","37.672175","-106.070983","08/02/2013 11:34","https://dwr.state.co.us/Tools/Structures/2008727", +"2008729","W0277 WELL NO 03","EBOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0277","11028-R","01062045","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","35","40.0 N","8.0 E","N","","","","","405159.0","4169972.0","37.672044","-106.075449","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008729", +"2008732","W0277 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0277","5161-F","03062367/03062405","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","34","40.0 N","8.0 E","N","","","","","404342.0","4169896.0","37.671275","-106.084702","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008732", +"2008734","W0279 WELL NO 01","W. HAWKINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0010, W0279","6447-R, 6447-R-R, 87730-F","10063576/10063690","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","11","39.0 N","7.0 E","N","","","","","395393.0","4166369.0","37.638514","-106.185652","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008734", +"2008735","W0279 WELL NO 02","EAST HAWKINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0279","6449-R","072019003984/10063631","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","11","39.0 N","7.0 E","N","","","","","396183.0","4166530.0","37.640055","-106.176723","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008735", +"2008738","W0279 WELL NO 05","EAST HAWKINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0279","11167-F","08223642/10063693","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","11","39.0 N","7.0 E","N","","","","","396581.0","4166141.0","37.636594","-106.172157","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008738", +"2008741","W0280 WELL NO 03","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0280","8442-R","10061911/12204367","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","7","39.0 N","8.0 E","N","","","","","398645.0","4166243.0","37.637743","-106.148782","07/28/2015 12:00","https://dwr.state.co.us/Tools/Structures/2008741", +"2008742","W0280 WELL NO 04","5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0280","5742-F","10061911/12204367","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","7","39.0 N","8.0 E","N","","","","","399037.0","4166091.0","37.636417","-106.144319","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008742", +"2008744","W0281 WELL NO 02","NORTH PLANT PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0281","8439-R","23080211","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","9","39.0 N","8.0 E","N","","","","","402778.0","4166448.0","37.640038","-106.101974","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008744", +"2008745","W0281 WELL NO 03","GWF #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0281","2578-F, 2578-F-R","09061922/10062860","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","9","39.0 N","8.0 E","N","","","","","403102.0","4165988.0","37.635926","-106.098241","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008745", +"2008747","W0282 WELL NO 02","YARD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0282","8443-R","07061131/07061168, 100689","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","18","39.0 N","8.0 E","N","","","","","399435.0","4165645.0","37.632441","-106.139748","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008747", +"2008748","W0282 WELL NO 03","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0282","8444-R","07061131/07061168","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","18","39.0 N","8.0 E","N","","","","","399824.0","4165270.0","37.629104","-106.135288","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008748", +"2008749","W0283 WELL NO 01","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0283","8433-R","07061151/07061165","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","12","39.0 N","7.0 E","N","","","","","397798.0","4166505.0","37.640011","-106.158417","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008749", +"2008750","W0283 WELL NO 02","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0283","8434-R","10061902/10062062-100250","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","12","39.0 N","7.0 E","N","","","","","397236.0","4166519.0","37.640074","-106.164788","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008750", +"2008753","W0283 WELL NO 05","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0283","5743-F","07061151/07061165","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","12","39.0 N","7.0 E","N","","","","","398178.0","4166101.0","37.636412","-106.154055","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008753", +"2008754","W0283 WELL NO 06","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0283","4688-F","10061902/10062062-100250","OASE, PEGGY; WRIGHT SISTERS' FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","12","39.0 N","7.0 E","N","","","","","397368.0","4166122.0","37.636511","-106.163236","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008754", +"2008764","W0296 WELL NO 01","GRASS FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0296","6163-R","11061479/11061568","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","39.0 N","8.0 E","N","","","","","405114.0","4165544.0","37.632135","-106.075383","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008764", +"2008765","W0296 WELL NO 02","ENE NURSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0008, W0296","6160-R","04103828","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","14","39.0 N","8.0 E","N","","","","","405893.0","4165347.0","37.630440","-106.066531","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008765", +"2008766","W0296 WELL NO 03","EAST HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0008, W0296","6161-R","12061282/05081682","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NW","14","39.0 N","8.0 E","N","","","","","405903.0","4165504.0","37.631856","-106.066438","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008766", +"2008767","W0296 WELL NO 05","WEST HOME -S RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0296","6164-R, 6164-R-R","11061500/11061543","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","15","39.0 N","8.0 E","N","","","","","404318.0","4165545.0","37.632062","-106.084403","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008767", +"2008768","W0296 WELL NO 06","WEST HOME - SWELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0296","6165-R","11061440/11061666","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","15","39.0 N","8.0 E","N","","","","","404290.0","4165369.0","37.630473","-106.084697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008768", +"2008769","W0296 WELL NO 07","MIDDLE HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0296","12746-F","11061479/11061568","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","39.0 N","8.0 E","N","","","","","405101.0","4165450.0","37.631287","-106.075518","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008769", +"2008770","W0297 WELL NO 01","#1 SOUTH OPEN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0297","13645-R","","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2016","3","20","RIO GRANDE","","","SW","SW","SW","14","39.0 N","8.0 E","N","","","","","405052.0","4164011.0","37.618314","-106.075887","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008770", +"2008772","W0297 WELL NO 03","#4 SOUTH OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0297","5934-R","06-8-4045","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","23","39.0 N","8.0 E","N","","","","","405045.0","4163745.0","37.615916","-106.075931","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008772", +"2008775","W0298 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0298","13562-R","052013003737","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","6","39.0 N","8.0 E","N","","","","","398664.0","4167831.0","37.652056","-106.148787","02/06/2026 12:53","https://dwr.state.co.us/Tools/Structures/2008775", +"2008776","W0298 WELL NO 07","WEST HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0298","13561-R","052013003737","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","6","39.0 N","8.0 E","N","","","","","399067.0","4167696.0","37.650884","-106.144201","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008776", +"2008778","W0298 WELL NO 09","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0298","5163-F","062013000092","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","8","39.0 N","8.0 E","N","","","","","401089.0","4166448.0","37.639857","-106.121114","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008778", +"2008781","W0299 WELL NO 02","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0299","10066-R","GP11-4796-8","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","29","40.0 N","10.0 E","N","","","","","420576.0","4170731.0","37.680349","-105.900734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008781", +"2008782","W0299 WELL NO 03","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0299","10067-R","GP11-4796-8","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","29","40.0 N","10.0 E","N","","","","","420590.0","4171077.0","37.683469","-105.900613","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008782", +"2008784","W0299 WELL NO 05","#8 REPLACEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0299","3248-F, 3248-F-R","09060210/09060243","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","40.0 N","10.0 E","N","","","","","420185.0","4171347.0","37.685867","-105.905235","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008784", +"2008788","W0302 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0302","5777-F","07061138/07061183, 23-02150-08","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NE","NW","30","40.0 N","9.0 E","N","","","","","409288.0","4171805.0","37.688981","-106.028864","02/06/2026 12:54","https://dwr.state.co.us/Tools/Structures/2008788", +"2008789","W0302 WELL NO 02","1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0302","969-R","07061138/07061183, 23-02150-08","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","30","40.0 N","9.0 E","N","","","","","409288.0","4171609.0","37.687214","-106.028839","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008789", +"2008792","W0304 WELL NO 01","RIGGENBACH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0304","10624-R","09062785/10060068","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","5","39.0 N","8.0 E","N","","","","","400289.0","4167582.0","37.649990","-106.130335","06/04/2013 11:18","https://dwr.state.co.us/Tools/Structures/2008792", +"2008795","W0305 WELL NO 02","M-3 LINE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0305","11399-F","12061244/12061341, 14-11240-8","HARRISON, TODD; HARRISON, WESLEY; MONTER, JOYCE","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","23","40.0 N","7.0 E","N","","","","","396285.0","4172688.0","37.695559","-106.176442","07/21/2014 10:49","https://dwr.state.co.us/Tools/Structures/2008795", +"2008798","W0307 WELL NO 02","DOBEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0009, W0307","12824-R","05083030/04061512","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","11","39.0 N","8.0 E","N","","","","","405127.0","4166659.0","37.642185","-106.075381","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008798", +"2008800","W0308 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0308","13556-R, 13556-R-R","05062244/05062208","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","31","40.0 N","8.0 E","N","","","","","399878.0","4169240.0","37.664887","-106.135221","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008800", +"2008801","W0308 WELL NO 03","WHSE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0308","13557-R, 13557-R-R","05062244/05062208","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","31","40.0 N","8.0 E","N","","","","","399480.0","4169539.0","37.667538","-106.139774","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008801", +"2008803","W0308 WELL NO 05","KENS WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0019, W0308","13558-R","11061398/05062203","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","31","40.0 N","8.0 E","N","","","","","399481.0","4169395.0","37.666240","-106.139743","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008803", +"2008806","W0313 WELL NO 02","COCHRAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0313","180-R-R","10061893/10062069","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","2","39.0 N","7.0 E","N","","","","","396617.0","4168502.0","37.657874","-106.172084","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008806", +"2008809","W0315 WELL NO 02","EC","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0315","3180-F","04060832/06123303","CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","20","39.0 N","8.0 E","N","","","","","400213.0","4163907.0","37.616864","-106.130695","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008809", +"2008810","W0315 WELL NO 03","WC","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0315","11329-F","03061814/03061837","CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","20","39.0 N","8.0 E","N","","","","","400614.0","4164037.0","37.618079","-106.126169","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008810", +"2008812","W0316 WELL NO 02","SESSUMS WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0316","4543-F","09061323/09061398","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","12","39.0 N","8.0 E","N","","","","","406744.0","4166286.0","37.638989","-106.057008","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008812", +"2008813","W0316 WELL NO 03","7 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0316","1615-R, 1618-R, 1615-R-R","01061419/11061559","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","39.0 N","8.0 E","N","","","","","406758.0","4166789.0","37.643523","-106.056913","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008813", +"2008823","W0320 WELL NO 03","10 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0320","920-R","01061416/01061438","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","39.0 N","8.0 E","N","","","","","402706.0","4168456.0","37.658126","-106.103057","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008823", +"2008824","W0320 WELL NO 04","DAVID","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0320","921-R","100184","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","3","39.0 N","8.0 E","N","","","","","403522.0","4168762.0","37.660969","-106.093848","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008824", +"2008825","W0876 WELL NO 01","DAVID","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0320","6217-F","100184","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","39.0 N","8.0 E","N","","","","","403919.0","4168415.0","37.657884","-106.089302","12/01/2008 13:52","https://dwr.state.co.us/Tools/Structures/2008825", +"2008826","W0320 WELL NO 06","10 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0320","6218-F","01061416/01061438","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","4","39.0 N","8.0 E","N","","","","","403140.0","4168427.0","37.657910","-106.098134","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008826", +"2008827","W0321 WELL NO 01","FIELD 7, DITCH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0321","1539-R","11060493/100573","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","SW","NW","NW","9","39.0 N","8.0 E","N","","","","","401921.0","4167030.0","37.645191","-106.111764","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008827", +"2008828","W0321 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0321","1540-R","05060241/05060784","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","9","39.0 N","8.0 E","N","","","","","401921.0","4166842.0","37.643497","-106.111739","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008828", +"2008830","W0322 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0322","3105-F, 3105-F-R","10063554/10063722","EAGLES, BURTON J.","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","8","40.0 N","8.0 E","N","","","","","400397.0","4176122.0","37.726961","-106.130279","08/04/2015 10:47","https://dwr.state.co.us/Tools/Structures/2008830", +"2008835","W1903 WELL NO 03","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0324","14540-F","01061406/11061620","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","27","40.0 N","8.0 E","N","","","","","403966.0","4170812.0","37.679490","-106.089085","11/04/2008 08:30","https://dwr.state.co.us/Tools/Structures/2008835", +"2008836","W0324 WELL NO 03","STARBUCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0324","14541-F","01062057/01062082","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","33","40.0 N","8.0 E","N","","","","","402313.0","4170026.0","37.672232","-106.107722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008836", +"2008837","W0324 WELL NO 04","SCHOOL, SCHOOL QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0324","5464-F","01062054/01062069","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","28","40.0 N","8.0 E","N","","","","","401942.0","4171077.0","37.681664","-106.112070","12/11/2020 12:34","https://dwr.state.co.us/Tools/Structures/2008837", +"2008838","W0324 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0324","6899-F, 6899-F-R","03062358/03062397","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","28","40.0 N","8.0 E","N","","","","","402743.0","4170937.0","37.680488","-106.102969","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008838", +"2008839","W0324 WELL NO 06","SCHOOL, SCHOOL QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0324","11687-F","01062054/01062069","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","28","40.0 N","8.0 E","N","","","","","401938.0","4170900.0","37.680069","-106.112091","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2008839", +"2008843","W0324 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0324","1206-R","01062057/01062082","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","33","40.0 N","8.0 E","N","","","","","401931.0","4170213.0","37.673877","-106.112078","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008843", +"2008845","W0324 WELL NO 12","GREEN HOUSE, SCHOOL QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0324","1106-R","3760649","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","28","40.0 N","8.0 E","N","","","","","401941.0","4171171.0","37.682511","-106.112094","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008845", +"2008847","W0324 WELL NO 14","RAILROAD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W0324","1104-R","03062358/03062397","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","28","40.0 N","8.0 E","N","","","","","402742.0","4171119.0","37.682128","-106.103004","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008847", +"2008863","W0334 WELL NO 6","FIELD #30","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0334","13292-R, 13292-R-R","14-11226","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","20","40.0 N","10.0 E","N","","","","","419786.0","4173088.0","37.701522","-105.909951","12/28/2007 10:49","https://dwr.state.co.us/Tools/Structures/2008863", +"2008864","W0334 WELL NO 08","FIELD #30","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0334","6022-F","14-11226","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","20","40.0 N","10.0 E","N","","","","","419783.0","4172978.0","37.700531","-105.909973","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008864", +"2008869","W0334 WELL NO 13","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0334","3108-F","02060436/02060458","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","32","41.0 N","10.0 E","N","","","","","419860.0","4178402.0","37.749419","-105.909698","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008869", +"2008870","W0337 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0030, W0337","6264-R","05083012/11072484","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","NW","SW","6","39.0 N","8.0 E","N","","","","","398666.0","4167937.0","37.653011","-106.148780","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008870", +"2008871","W0337 WELL NO 02","WORLEY QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0337","6265-R","05060236/05060270","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","6","39.0 N","8.0 E","N","","","","","398669.0","4168162.0","37.655039","-106.148777","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008871", +"2008876","W0340 WELL NO 02","14 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0340","8694-R, 8694-R-R","01061420/06214539","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","39.0 N","8.0 E","N","","","","","401938.0","4166436.0","37.639840","-106.111492","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008876", +"2008880","W0343 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, 21CW0036, W0343","12212-R, 12212-R-R, 87733-F","11577367","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","10","40.0 N","8.0 E","N","","","","","403623.0","4175244.0","37.719394","-106.093561","11/30/2022 14:05","https://dwr.state.co.us/Tools/Structures/2008880", +"2008887","W0345 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0345","11295-R, 11295-R-R","01061415/12230529","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","32","40.0 N","8.0 E","N","","","","","401102.0","4169610.0","37.668354","-106.121396","07/31/2015 08:20","https://dwr.state.co.us/Tools/Structures/2008887", +"2008888","W0345 WELL NO 04","1 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0345","11296-R","01061415/12230529","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","32","40.0 N","8.0 E","N","","","","","401101.0","4169425.0","37.666686","-106.121382","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008888", +"2008889","W0347 WELL NO 01","ELEMENTARY SPRINKLER SYSTEM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0347","23557-F, 23557-F-R","8929727","JARAMILLO, BRANDON; SARGENT SCHOOL DISTRICT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","28","40.0 N","8.0 E","N","","","","","401974.0","4170430.0","37.675837","-106.111620","08/06/2020 16:48","https://dwr.state.co.us/Tools/Structures/2008889", +"2008891","W0347 WELL NO 03","ELEMENTARY DRINKING/SANITARY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0347","23559-F, 23559-F-R","11060489","JARAMILLO, BRANDON; SARGENT SCHOOL DISTRICT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","28","40.0 N","8.0 E","N","","","","","402002.0","4170456.0","37.676074","-106.111306","08/06/2020 16:54","https://dwr.state.co.us/Tools/Structures/2008891", +"2008892","W0347 WELL NO 04","OLD GYM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0347","31602-","8425278","JARAMILLO, BRANDON; SARGENT SCHOOL DISTRICT","RGWCD SD1","10/31/2016","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","29","40.0 N","8.0 E","N","","","","","401847.0","4170482.0","37.676292","-106.113067","01/16/2024 10:13","https://dwr.state.co.us/Tools/Structures/2008892", +"2008893","W0348 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0348","6031-R, 6031-R-R, 78495-F","02061557/04061502-1567725","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","35","40.0 N","7.0 E","N","","","","","395838.0","4170085.0","37.672052","-106.181140","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008893", +"2008894","W0348 WELL NO 02","#2 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0348","12260-R","03061799/03061844-1560468","LUCY TRUST (CROWDER, AMY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","35","40.0 N","7.0 E","N","","","","","396250.0","4170209.0","37.673216","-106.176486","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008894", +"2008896","W0348 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0348","6029-R, 78493-F","02061557/04061502-1567725","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","35","40.0 N","7.0 E","N","","","","","395451.0","4170461.0","37.675396","-106.185581","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008896", +"2008897","W0348 WELL NO 05","WAREHOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0015, W0348","6030-R, 78494-F","6166795-1560443","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","35","40.0 N","7.0 E","N","","","","","395444.0","4170422.0","37.675044","-106.185655","06/18/2010 11:55","https://dwr.state.co.us/Tools/Structures/2008897", +"2008899","W0348 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0013, 13CW3011, W0348","6028-R, 6028-R-R","04061995/04062018","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","34","40.0 N","7.0 E","N","","","","","394631.0","4169900.0","37.670247","-106.194797","10/07/2014 09:31","https://dwr.state.co.us/Tools/Structures/2008899", +"2008902","W0350 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0031, 21CW0023, W0050","1732-R, 90514-F","09212317/12061441, 24-02073-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","25","39.0 N","8.0 E","N","","","","","406727.0","4162330.0","37.603336","-106.056695","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008902", +"2008903","W0350 WELL NO 03","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0023, W0350","5236-F, 90515-F","09212317/12061441, 24-02073-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","25","39.0 N","8.0 E","N","","","","","406708.0","4162064.0","37.600937","-106.056877","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008903", +"2008904","W0350 WELL NO 04","MOMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0006, W0350","12716-F, 90393-F","10063605/10063652","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","19","39.0 N","9.0 E","N","","","","","408297.0","4162701.0","37.606837","-106.038958","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008904", +"2008910","W0356 WELL NO PUMP 03","B-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0356","2821-F","09060204/09062005","BIEL, THOMAS; BIEL, TOMMY & JOY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","36","41.0 N","8.0 E","N","","","","","407715.0","4178631.0","37.750339","-106.047568","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008910", +"2008911","W0356 WELL NO PUMP 04","NEPTUNE 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0356","14215-R","05062226/05062211, 12314527","CHRISTENSEN, ROGER; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","2","40.0 N","8.0 E","N","","","","","406085.0","4176974.0","37.735240","-106.065853","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008911", +"2008916","W0358 WELL NO 01","WHITLOCK POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0358","791-R-R","10063580/10063688-ALL FLOW, 10063595/10063687-SURFACE","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","10","39.0 N","7.0 E","N","","","","","394176.0","4166966.0","37.643755","-106.199529","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008916", +"2008917","W0358 WELL NO 02","WHITNEY PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0358","5778-F","10063580/10063688-ALL FLOW, 10063595/10063687-SURFACE","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","10","39.0 N","7.0 E","N","","","","","393778.0","4167278.0","37.646520","-106.204085","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008917", +"2008918","W0359 WELL NO 01","5 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0359","8695-R","06052202/06052211","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","3","39.0 N","8.0 E","N","","","","","403516.0","4167902.0","37.653219","-106.093802","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008918", +"2008919","W0360 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0360","10964-R","10060712/10061042","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","39.0 N","7.0 E","N","","","","","397399.0","4167312.0","37.647238","-106.163052","06/07/2022 11:00","https://dwr.state.co.us/Tools/Structures/2008919", +"2008922","W0361 WELL NO 03","BASEBALL FIELD WELL (HOMER LEWIS)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0361","1833-R","20002064","JARAMILLO, BRANDON; SARGENT SCHOOL DISTRICT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","28","40.0 N","8.0 E","N","","","","","402003.0","4171287.0","37.683563","-106.111407","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008922", +"2008932","W0372 WELL NO 01","4 NORTHWEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0372","126-R, 126-R-R","01061414/01061441","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","16","39.0 N","8.0 E","N","","","","","401900.0","4165607.0","37.632365","-106.111811","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008932", +"2008935","W0372 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0372","129-R","01061414/01061441","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","16","39.0 N","8.0 E","N","","","","","401894.0","4165350.0","37.630049","-106.111844","06/09/2014 15:47","https://dwr.state.co.us/Tools/Structures/2008935", +"2008938","W0374 WELL NO 02","KEHLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0374","1996-R","03062371/03062403","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","6","39.0 N","8.0 E","N","","","","","399478.0","4168267.0","37.656075","-106.139621","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008938", +"2008939","W0376 WELL NO 01","FIELD 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0376","2197-F","10060696/10061097, 10060697/10061089","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","30","39.0 N","9.0 E","N","","","","","409086.0","4161448.0","37.595624","-106.029865","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008939", +"2008940","W0376 WELL NO 02","FIELD 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0376","12597-R","10060696/10061097","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","30","39.0 N","9.0 E","N","","","","","409097.0","4161218.0","37.593552","-106.029712","01/27/2004 10:15","https://dwr.state.co.us/Tools/Structures/2008940", +"2008942","W0376 WELL NO 04","MS5 NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0376","20246-S","10060651/10061106, 22-02299-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2022","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","30","39.0 N","9.0 E","N","","","","","409101.0","4162297.0","37.603276","-106.029800","07/27/2023 11:27","https://dwr.state.co.us/Tools/Structures/2008942", +"2008947","W0380 WELL NO 02","HARRIS NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0380","6015-R","14-13138-8","BOTHELL, ERIC; HAWS INC. (HAWS, JOHN L.)","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","23","40.0 N","7.0 E","N","","","","","396304.0","4173222.0","37.700373","-106.176303","10/07/2022 13:29","https://dwr.state.co.us/Tools/Structures/2008947", +"2008949","W0380 WELL NO 03","HARRIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0380","15447-F","14-13138-8","BOTHELL, ERIC; HAWS INC. (HAWS, JOHN L.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NE","23","40.0 N","7.0 E","N","","","","","396708.0","4173282.0","37.700960","-106.171729","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008949", +"2008955","W0386 WELL NO 02","JENKINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0386","15385-R","100767/12061410","BARHITE, JAXINE; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","5","40.0 N","8.0 E","N","","","","","401604.0","4177263.0","37.737374","-106.116739","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008955", +"2008956","W0386 WELL NO 03","JENKINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0386","5610-F","100767/12061410","BARHITE, JAXINE; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","5","40.0 N","8.0 E","N","","","","","401210.0","4177061.0","37.735511","-106.121182","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008956", +"2008962","W0390 WELL NO 02","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0390","5937-R","03061801/03061836","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","11","39.0 N","8.0 E","N","","","","","405938.0","4166373.0","37.639691","-106.066153","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008962", +"2008963","W0390 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0390","5939-R","03061801/03061836","MITCHELL FAMILY FARMS, LLC; MITCHELL, MARVIN; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","11","39.0 N","8.0 E","N","","","","","406320.0","4166016.0","37.636513","-106.061778","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008963", +"2008965","W0390 WELL NO 05","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0390","5687-F","11061456/072017003078","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","1","39.0 N","8.0 E","N","","","","","406757.0","4167798.0","37.652616","-106.057053","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008965", +"2008967","W0390 WELL NO 07","SEED CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0003, W0390","5933-R","3796708","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","1","39.0 N","8.0 E","N","","","","","406758.0","4167434.0","37.649336","-106.056996","06/23/2008 16:13","https://dwr.state.co.us/Tools/Structures/2008967", +"2008973","W0393 WELL NO 01","FISH POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0393","6351-R, 6351-R-R","06-6-1922","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","33","40.0 N","10.0 E","N","","","","","421388.0","4169759.0","37.671659","-105.891421","05/24/2005 09:54","https://dwr.state.co.us/Tools/Structures/2008973", +"2008974","W0393 WELL NO 02","FISH POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0393","10378-F","06-6-2029","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","33","40.0 N","10.0 E","N","","","","","421391.0","4169547.0","37.669749","-105.891365","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008974", +"2008975","W0393 WELL NO 03","FISH POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0393","12506-F","05062229/05062221","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","33","40.0 N","10.0 E","N","","","","","421437.0","4169756.0","37.671636","-105.890865","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008975", +"2008978","W0396 WELL NO 02","FIELD 14 NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0396","10265-F","072019003979/08062002","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","17","39.0 N","9.0 E","N","","","","","410736.0","4165346.0","37.630914","-106.011653","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008978", +"2008984","W0403 WELL NO 05","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0403","6258-F","04060173/07202086","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","32","41.0 N","9.0 E","N","","","","","410539.0","4178803.0","37.752169","-106.015538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008984", +"2008985","W0403 WELL NO 06","PIVOT #1 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0403","10568-F, 10568-F-R","04060172/04060140","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","6","40.0 N","9.0 E","N","","","","","410115.0","4177641.0","37.741656","-106.020206","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008985", +"2008986","W0403 WELL NO 07","PIVOT #1 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0403","6259-F","04060172/04060140","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","5","40.0 N","9.0 E","N","","","","","410539.0","4178002.0","37.744951","-106.015439","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008986", +"2008988","W0405 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0405","11237-R","10060713/10061043","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","36","40.0 N","7.0 E","N","","","","","397066.0","4169745.0","37.669126","-106.167170","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008988", +"2008992","W0406 WELL NO 02","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0406","1982-R","04060168/04060123","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","1","40.0 N","8.0 E","N","","","","","407706.0","4176857.0","37.734351","-106.047445","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008992", +"2008995","W0407 WELL NO 01","N.WELL ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0407","2788-F","11061410/12061429-100750","CANON REALTY CO, LLC (SCHAFER, KATHY T.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","NW","4","40.0 N","8.0 E","N","","","","","402811.0","4178230.0","37.746217","-106.103172","08/06/2020 16:55","https://dwr.state.co.us/Tools/Structures/2008995", +"2008996","W0407 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0407","9489-F","012017002843/012017002844","CANON REALTY CO, LLC (SCHAFER, KATHY T.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","NW","4","40.0 N","8.0 E","N","","","","","402693.0","4178198.0","37.745916","-106.104507","06/22/2022 17:52","https://dwr.state.co.us/Tools/Structures/2008996", +"2008998","W0409 WELL NO 01","8 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0409","6041-R","100157/10061064","HANSEN RANCHES CO.; RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","27","40.0 N","8.0 E","N","","","","","404366.0","4171227.0","37.683272","-106.084604","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008998", +"2009002","W0411 WELL NO 02","M7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0411","12890-R","05060238/05060261","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","26","40.0 N","7.0 E","N","","","","","395458.0","4171148.0","37.681588","-106.185600","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009002", +"2009003","W0413 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0413","13575-R","02060452, 112016001837","ANDERSON, KEENAN L.","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","26","41.0 N","8.0 E","N","","","","","405249.0","4180083.0","37.763171","-106.075745","01/18/2018 16:04","https://dwr.state.co.us/Tools/Structures/2009003", +"2009004","W0413 WELL NO 02","MCCORMICK 26-#13 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0413","12244-F","02060452, 112016001837","ANDERSON, KEENAN L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","26","41.0 N","8.0 E","N","","","","","405252.0","4180212.0","37.764334","-106.075728","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009004", +"2009020","W0424 WELL NO 02","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0424","6007-R-R","22-02298-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","12","39.0 N","8.0 E","N","","","","","407927.0","4166752.0","37.643308","-106.043660","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009020", +"2009021","W0424 WELL NO 03","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0424","2394-F","22-02298-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","12","39.0 N","8.0 E","N","","","","","407538.0","4166796.0","37.643665","-106.048074","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009021", +"2009023","W0424 WELL NO 06","NORTH PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0424","3030-F","10060658/100135","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","31","40.0 N","9.0 E","N","","","","","408376.0","4168843.0","37.662197","-106.038834","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009023", +"2009025","W0426 WELL NO ART 01","FIELD #37","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0426","5421-F","22-08089-10","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","6","39.0 N","10.0 E","N","","","","","418173.0","4168561.0","37.660581","-105.927739","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009025", +"2009043","W0426 WELL NO PUMP 01","FIELD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0001, W0426","15232-F","06-8-2604","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","6","39.0 N","10.0 E","N","","","","","418175.0","4167217.0","37.648469","-105.927565","06/03/2008 09:12","https://dwr.state.co.us/Tools/Structures/2009043", +"2009044","W0426 WELL NO PUMP 02","FIELD #37","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0426","11046-R","60604117336","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","6","39.0 N","10.0 E","N","","","","","418170.0","4168578.0","37.660734","-105.927775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009044", +"2009045","W0426 WELL NO PUMP 04","NORTHEAST QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0426","10767-R","06123293/12062700, 06-6-2153","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","7","39.0 N","10.0 E","N","","","","","418901.0","4166699.0","37.643865","-105.919279","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009045", +"2009048","W0426 WELL NO PUMP 07","FIELD #72","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0426","5422-F","20-04310, 60604105832","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","31","40.0 N","10.0 E","N","","","","","418138.0","4168848.0","37.663165","-105.928168","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009048", +"2009049","W0431 WELL NO 02","MAP 18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0431","9440-F","10062696/10062857","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","14","39.0 N","9.0 E","N","","","","","415204.0","4165046.0","37.628634","-105.960988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009049", +"2009050","W0431 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0025, W0431","5482-F, 86802-F","062015002419","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","14","39.0 N","9.0 E","N","","","","","416010.0","4164272.0","37.621733","-105.951766","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009050", +"2009051","18CW0007 WELL NO. 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0007, W0433","2842-F","18-02943-08","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","24","40.0 N","8.0 E","N","","","","","406826.0","4172717.0","37.696953","-106.056900","12/01/2022 14:33","https://dwr.state.co.us/Tools/Structures/2009051", +"2009055","W0435 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0435","1484-R","11060511/11060676","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","8","40.0 N","8.0 E","N","","","","","401197.0","4176440.0","37.729913","-106.121245","08/14/2003 11:51","https://dwr.state.co.us/Tools/Structures/2009055", +"2009057","W0436 WELL NO 02","M1 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0436","10412-R","12061262/12212605","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","25","40.0 N","7.0 E","N","","","","","397095.0","4171339.0","37.683494","-106.167066","07/31/2015 11:57","https://dwr.state.co.us/Tools/Structures/2009057", +"2009065","W0439 WELL NO 01","RWM SOUTH AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0439","10799-R, 10799-R-R","19857630","LINDA K. HAVERLAND TRUST (HAVERLAND, LINDA K.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","31","41.0 N","9.0 E","N","","","","","408546.0","4179237.0","37.755883","-106.038213","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009065", +"2009067","W0439 WELL NO 04","Q2 - NW WELL # 30 BOB MYERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0439","6310-F","09212326/052018001065","MYERS, JARED S.; THE JANET LEE MYERS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","NW","31","41.0 N","9.0 E","N","","","","","408551.0","4179552.0","37.758722","-106.038195","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009067", +"2009069","W0442 WELL NO 04","P5 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","3071-F","09061308/09061414, 23-00711-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","34","41.0 N","8.0 E","N","","","","","403638.0","4179289.0","37.755848","-106.093927","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009069", +"2009072","W0442 WELL NO 07","PERRIN 2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","2234-F","09061283/09061383","PERRIN JR, THOMAS W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","27","41.0 N","8.0 E","N","","","","","403641.0","4180343.0","37.765346","-106.094033","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009072", +"2009083","W0450 WELL NO 02","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0450","10237-R","09062718/10060157","LOBO FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","32","40.0 N","9.0 E","N","","","","","410019.0","4169578.0","37.668983","-106.020299","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009083", +"2009084","W0450 WELL NO 03","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0450","5557-F","12230557/09060751","GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON); LOBO FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","32","40.0 N","9.0 E","N","","","","","410012.0","4169365.0","37.667063","-106.020352","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009084", +"2009085","W0451 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0451","1894-R","01062059/01062084","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","6","39.0 N","9.0 E","N","","","","","408374.0","4168648.0","37.660439","-106.038832","10/03/2013 14:53","https://dwr.state.co.us/Tools/Structures/2009085", +"2009086","W0451 WELL NO 03","FIELD 1 NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","6322-F","05062251/05062219","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","6","39.0 N","9.0 E","N","","","","","408374.0","4168524.0","37.659322","-106.038816","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009086", +"2009087","W0451 WELL NO 04","FIELD 2 SUPPL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","5360-F","05061440/05061481","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","6","39.0 N","9.0 E","N","","","","","409172.0","4168429.0","37.658545","-106.029758","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009087", +"2009089","W0451 WELL NO 07","FIELD 3 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","15372-F","05061462/05061488","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","6","39.0 N","9.0 E","N","","","","","408750.0","4167560.0","37.650672","-106.034433","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009089", +"2009090","W0451 WELL NO 08","FIELD 3 SUPPL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","12444-R","05061462/05061488","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","6","39.0 N","9.0 E","N","","","","","408358.0","4167659.0","37.651525","-106.038889","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009090", +"2009095","W0451 WELL NO 13","FIELD 4 SUPPL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0451","5001-F","05061459/05061496, 06-8-3329","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","6","39.0 N","9.0 E","N","","","","","409165.0","4167567.0","37.650776","-106.029731","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009095", +"2009104","W0452 WELL NO 01","# 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0452","3043-F","19-04144-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","33","39.0 N","9.0 E","N","","","","","411613.0","4160468.0","37.587038","-106.001125","01/08/2014 13:54","https://dwr.state.co.us/Tools/Structures/2009104", +"2009105","W0452 WELL NO 02","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0452","13404-F","062015000938/062019000996","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","34","39.0 N","9.0 E","N","","","","","413087.0","4160574.0","37.588134","-105.984445","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009105", +"2009108","W0452 WELL NO 05","# 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0452","12875-R","10060687/10061072","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","33","39.0 N","9.0 E","N","","","","","412856.0","4160615.0","37.588481","-105.987066","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009108", +"2009110","W0457 WELL NO 02","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0457","10344-F","","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","NE","NE","22","40.0 N","9.0 E","N","","","","","414569.0","4173150.0","37.701609","-105.969132","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009110", +"2009113","W0457 WELL NO 07","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0457","17513-F","10062700/10062885","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","16","40.0 N","9.0 E","N","","","","","412143.0","4174003.0","37.709067","-105.996752","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009113", +"2009114","W0457 WELL NO 08","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0457","17514-F, 17514-F-R","10062698/052019002620","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","16","40.0 N","9.0 E","N","","","","","412981.0","4173988.0","37.709012","-105.987244","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009114", +"2009118","W0460 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0460","11238-R","07-6-1001","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","30","40.0 N","7.0 E","N","","","","","389747.0","4170833.0","37.678080","-106.250306","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009118", +"2009120","W0461 WELL NO 02","WEST CIRCLE-#15 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","15CW0003, W0461","14889-F","15-08810-8","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","30","40.0 N","7.0 E","N","","","","","390170.0","4171742.0","37.686322","-106.245647","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009120", +"2009121","W0461 WELL NO 03","SOUTH CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0461","793-R-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","NW","SW","29","40.0 N","7.0 E","N","","","","","390964.0","4170953.0","37.679307","-106.236526","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009121", +"2009123","15CW0003 WELL NO 05-R","#14 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","15CW0003, W0461","6816-R, 79715-F","21-02803-08","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2016","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","29","40.0 N","7.0 E","N","","","","","390587.0","4171439.0","37.683642","-106.240873","11/05/2025 13:46","https://dwr.state.co.us/Tools/Structures/2009123", +"2009136","W0468 WELL NO 03","HENDERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0468","10325-R","09062769/10060079","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","2","39.0 N","7.0 E","N","","","","","397000.0","4168294.0","37.656043","-106.167713","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009136", +"2009140","W0469 WELL NO 06","JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0469","12223-R","10063549/10063733","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","30","40.0 N","8.0 E","N","","","","","399905.0","4171252.0","37.683021","-106.135191","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009140", +"2009141","W0469 WELL NO 07","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0469","12130-F","11060542/11060621","KAISER FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","31","40.0 N","8.0 E","N","","","","","398700.0","4169877.0","37.670498","-106.148664","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009141", +"2009146","W0471 WELL NO 05","9 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0471","5490-F","12062552/12062736","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","16","40.0 N","8.0 E","N","","","","","401986.0","4173944.0","37.707505","-106.111957","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009146", +"2009147","W0471 WELL NO 06","11 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0471","13551-R","11061411/06214540","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","29","40.0 N","8.0 E","N","","","","","401121.0","4170826.0","37.679314","-106.121345","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2009147", +"2009154","W0474 WELL NO 02","HAWS HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0474","11937-R","17-09055-8","BURKHART FARMS, LLC (BURKHART, NATHAN); HAWS, HELENA","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","27","40.0 N","7.0 E","N","","","","","393846.0","4171143.0","37.681357","-106.203877","08/04/2015 15:40","https://dwr.state.co.us/Tools/Structures/2009154", +"2009157","W0479 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0479","10087-R","100896/12061382","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","18","40.0 N","9.0 E","N","","","","","409322.0","4173701.0","37.706071","-106.028714","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009157", +"2009158","W0479 WELL NO 03","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0002, W0479","5164-F, 90357-F","20-03588-08","CARPENTER, CODY; CARPENTER, KENNETH L.; VICKI SUE BAMBER TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","19","40.0 N","9.0 E","N","","","","","409323.0","4173433.0","37.703656","-106.028669","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009158", +"2009163","W0483 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0483","15254-F","10063626/10063642, 11061536/01250085","FRASIER, RICHARD A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","NE","NW","33","41.0 N","8.0 E","N","","","","","402574.0","4179791.0","37.760259","-106.106071","06/22/2022 19:44","https://dwr.state.co.us/Tools/Structures/2009163", +"2009167","W0485 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0485","4358-F","12062634/12062652","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","7","39.0 N","9.0 E","N","","","","","408740.0","4166794.0","37.643768","-106.034451","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009167", +"2009171","W0493 WELL NO 01","MS1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0493","16-R","10060638/10061107","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","39.0 N","9.0 E","N","","","","","409890.0","4161902.0","37.599794","-106.020815","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009171", +"2009172","W0493 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0004, W0493","17-R","22-03021-06","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2022","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","29","39.0 N","9.0 E","N","","","","","409895.0","4162177.0","37.602273","-106.020792","02/06/2026 12:55","https://dwr.state.co.us/Tools/Structures/2009172", +"2009173","W0493 WELL NO 03","MS1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0493","15777-F","10060638/10061107","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","39.0 N","9.0 E","N","","","","","410294.0","4161905.0","37.599861","-106.016239","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009173", +"2009196","W0501 WELL NO 01","7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0501","5483-F, 5483-F-R","10060650/10061115-100110, 17-10635-08, 18-11220-06","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","23","39.0 N","9.0 E","N","","","","","416015.0","4163487.0","37.614658","-105.951619","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009196", +"2009199","W0504 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0021, W0504","6463-R","02082197/11061588","MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","13","40.0 N","7.0 E","N","","","","","397141.0","4173856.0","37.706181","-106.166900","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009199", +"2009205","W0508 WELL NO 02","12 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0508","13553-R, 13553-R-R","01061405/01061423","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","21","40.0 N","8.0 E","N","","","","","401976.0","4173032.0","37.699285","-106.111947","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009205", +"2009206","W0509 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0509","7043-R","22016191, 22016203","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","33","40.0 N","8.0 E","N","","","","","402719.0","4169476.0","37.667319","-106.103046","04/28/2021 12:32","https://dwr.state.co.us/Tools/Structures/2009206", +"2009207","W0509 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0509","7044-R","100752/12061432","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","33","40.0 N","8.0 E","N","","","","","402717.0","4169569.0","37.668157","-106.103081","07/31/2015 13:57","https://dwr.state.co.us/Tools/Structures/2009207", +"2009208","W0509 WELL NO 03","6M EQ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0509","15369-F","052018000684/12061436","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","34","40.0 N","8.0 E","N","","","","","403922.0","4169193.0","37.664895","-106.089371","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009208", +"2009209","W0509 WELL NO 04","6M WQ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0509","15368-F","100752/12061432","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","33","40.0 N","8.0 E","N","","","","","403193.0","4169252.0","37.665350","-106.097643","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009209", +"2009210","W0509 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0509","","052018000684/12061436","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","34","40.0 N","8.0 E","N","","","","","403535.0","4169556.0","37.668126","-106.093806","04/13/2021 14:13","https://dwr.state.co.us/Tools/Structures/2009210", +"2009212","W0510 WELL NO 03","NORTH BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0510","5160-F","09061930/09061972","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","32","40.0 N","8.0 E","N","","","","","400295.0","4169875.0","37.670654","-106.130581","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009212", +"2009213","W0511 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0511","13228-R","GP09-1715-8","CLEGHORN, BRANDON T & MEGAN N","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","18","39.0 N","8.0 E","N","","","","","398617.0","4164840.0","37.625097","-106.148905","08/06/2020 16:56","https://dwr.state.co.us/Tools/Structures/2009213", +"2009216","W0511 WELL NO 04","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0009, W0511","13229-R, 13229-R-R","24-01415-08","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","18","39.0 N","8.0 E","N","","","","","399002.0","4164456.0","37.621679","-106.144490","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009216", +"2009217","W0511 WELL NO 05","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0511","13227-R","09062744/042017003883","MCCOY, GLEN D. & SHARON A.; MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","18","39.0 N","8.0 E","N","","","","","399018.0","4165266.0","37.628980","-106.144420","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009217", +"2009219","W0514 WELL NO 02","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0514","6424-F","05060763/05060791","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","11","39.0 N","8.0 E","N","","","","","405937.0","4166704.0","37.642674","-106.066207","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009219", +"2009220","W0514 WELL NO 03","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0514","1705-R","05060763/05060791","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","11","39.0 N","8.0 E","N","","","","","405937.0","4166582.0","37.641574","-106.066191","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009220", +"2009221","W0515 WELL NO 01","MIKE'S HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0515","7206-R, 7206-R-R","12062502/12062788, 20007757","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","5","39.0 N","8.0 E","N","","","","","401092.0","4168765.0","37.660738","-106.121394","07/23/2021 15:18","https://dwr.state.co.us/Tools/Structures/2009221", +"2009222","W0515 WELL NO 02","3 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0515","7207-R","01061408/01061440","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","4","39.0 N","8.0 E","N","","","","","401914.0","4168434.0","37.657843","-106.112032","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009222", +"2009223","W0515 WELL NO 03","EAST BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0515","7208-R","14-10164-8","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","5","39.0 N","8.0 E","N","","","","","401096.0","4168432.0","37.657737","-106.121304","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009223", +"2009228","W0517 WELL NO 02","WEST KLECKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0517","238-R-R","20-04450-08","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","18","40.0 N","8.0 E","N","","","","","399154.0","4174858.0","37.715434","-106.144206","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009228", +"2009230","W0517 WELL NO. 4","EAST KLECKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0517","5978-R","11060517/10190354","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","18","40.0 N","8.0 E","N","","","","","399548.0","4174795.0","37.714910","-106.139728","03/26/2009 09:31","https://dwr.state.co.us/Tools/Structures/2009230", +"2009231","W0517 WELL NO 05","WEST KLECKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","15CW0009, W0517","3222-F","20-04450-08","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","18","40.0 N","8.0 E","N","","","","","398756.0","4174615.0","37.713201","-106.148687","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009231", +"2009234","W0519 WELL NO 02","#4, NORTH DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0519","4883-F","02060440/02060479","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","16","40.0 N","7.0 E","N","","","","","392694.0","4174938.0","37.715421","-106.217498","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009234", +"2009235","W0519 WELL NO 03","SOUTH DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0519","15379-F","02060455/10242137","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","16","40.0 N","7.0 E","N","","","","","392686.0","4174151.0","37.708328","-106.217473","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009235", +"2009237","W0521 WELL NO 02","SCOTTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0521","15040-R","05060750/05060777","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","10","40.0 N","8.0 E","N","","","","","404445.0","4176220.0","37.728276","-106.084364","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009237", +"2009243","W0528 WELL NO 02","#23 COMMERCIAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0017, W0528","12166-R","03-8-3942","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN); MISSICK, DOUG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","9","40.0 N","8.0 E","N","","","","","402805.0","4175246.0","37.719326","-106.102841","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009243", +"2009245","W0530 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0003, W0530","14036-R","08117986/08062001","SCHMIDT, BEN; SCHMIDT, LAVERNE D.","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","","NW","SE","33","41.0 N","7.0 E","N","","","","","393162.0","4179352.0","37.755252","-106.212838","02/06/2026 12:56","https://dwr.state.co.us/Tools/Structures/2009245", +"2009246","W0530 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0530","14034-R","14-07861-8","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","33","41.0 N","7.0 E","N","","","","","393121.0","4178618.0","37.748633","-106.213195","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009246", +"2009247","W0530 WELL NO 03","PIVOT DD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0530","15633-F","06-8-3510","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","SE","33","41.0 N","7.0 E","N","","","","","393525.0","4178966.0","37.751816","-106.208662","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009247", +"2009249","W0535 WELL NO 01","SE F-8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0004, 23CW0015, W0535","90522-F","23-02165-08","DIAZ, MIGUEL; MIGUEL ANGEL DIAZ REVOCABLE TRUST (DIAZ, MIGUEL A.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","39.0 N","9.0 E","N","","","","","411115.0","4162711.0","37.607204","-106.007037","07/29/2008 10:47","https://dwr.state.co.us/Tools/Structures/2009249", +"2009250","18CW4 WELL NO. 3R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0014, 18CW0004, 23CW0015, W0535","6519-F, 88376-F","23-02165-08","DIAZ, MIGUEL; MIGUEL ANGEL DIAZ REVOCABLE TRUST (DIAZ, MIGUEL A.)","RGWCD SD1","10/31/2024","10/31/2025","3","20","ALAMOSA","","","","SW","SE","20","39.0 N","9.0 E","N","","","","","410730.0","4162379.0","37.604175","-106.011358","02/18/2026 15:06","https://dwr.state.co.us/Tools/Structures/2009250", +"2009255","W0538 WELL NO 02","#24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0538","10114-R","12061170/12061438","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","5","39.0 N","9.0 E","N","","","","","409956.0","4167270.0","37.648177","-106.020728","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009255", +"2009266","W0546 WELL NO 02","SOUTH BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0546","14153-R","09061954/09061976","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JM FARMLAND LLC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","32","40.0 N","8.0 E","N","","","","","400302.0","4169569.0","37.667898","-106.130459","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009266", +"2009269","W0547 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0547","6414-R","11061432/09212241","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","24","40.0 N","8.0 E","N","","","","","407630.0","4173009.0","37.699666","-106.047818","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009269", +"2009270","W0547 WELL NO 03","8 MILE STORAGE, FKA 2013849","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0007, W0547","10393-F, 58823-F","20-03586-08, 222156101/372023","CARPENTER, CODY; CARPENTER, KENNETH L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","24","40.0 N","8.0 E","N","","","","","407615.0","4172075.0","37.691247","-106.047870","08/29/2013 09:14","https://dwr.state.co.us/Tools/Structures/2009270", +"2009271","W0547 WELL NO 04","BR. CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0547","3513-F","10063604/10063638","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","24","40.0 N","8.0 E","N","","","","","407627.0","4172799.0","37.697773","-106.047826","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009271", +"2009274","W0549 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0549","1040-R, 1040-R-R","072017003076/12062748, 22-07417-06","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NW","NW","9","39.0 N","9.0 E","N","","","","","411599.0","4167041.0","37.646273","-106.002079","05/03/2023 10:58","https://dwr.state.co.us/Tools/Structures/2009274", +"2009275","W0549 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0549","1041-R","100262/10062017","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE; JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NE","NW","8","39.0 N","9.0 E","N","","","","","410764.0","4167111.0","37.646823","-106.011551","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009275", +"2009276","W0549 WELL NO 04","#11 AUX.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0549","12753-F","072017003076/12062748, 22-07417-06","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","9","39.0 N","9.0 E","N","","","","","411587.0","4166847.0","37.644524","-106.002191","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009276", +"2009277","W0549 WELL NO 05","#11 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0549","15256-F","11060483/11060695","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","9","39.0 N","9.0 E","N","","","","","411987.0","4166694.0","37.643183","-105.997639","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009277", +"2009292","W0555 WELL NO 01","SUBSTATION","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0555","5956-R-R","17-09679-08","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","28","41.0 N","7.0 E","N","","","","","393622.0","4181334.0","37.773166","-106.207908","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009292", +"2009296","W0556 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0556","11815-F","05062252/05062213","PEPPER, KELBY; PEPPER, KELBY & JACQUE","RGWCD SD1","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","4","40.0 N","7.0 E","N","","","","","392306.0","4177192.0","37.735687","-106.222233","02/06/2026 12:57","https://dwr.state.co.us/Tools/Structures/2009296", +"2009300","W0561 WELL NO 02","N 7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0028, W0561","1338-R","03062362","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","25","40.0 N","8.0 E","N","","","","","407591.0","4170758.0","37.679376","-106.047975","08/01/2008 11:45","https://dwr.state.co.us/Tools/Structures/2009300", +"2009301","W0561 WELL NO 03","S 7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0561","5355-F","03063670/03063697","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","40.0 N","8.0 E","N","","","","","407584.0","4170049.0","37.672986","-106.047965","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009301", +"2009305","W0562 WELL NO 05","HOWEY #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0562","7269-R","05062238/05062201","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","12","40.0 N","8.0 E","N","","","","","406885.0","4176122.0","37.727644","-106.056666","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009305", +"2009306","W0562 WELL NO 06","7270RR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0562","7270-R, 7270-R-R","10062725/05062217","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","11","40.0 N","8.0 E","N","","","","","406074.0","4176170.0","37.727994","-106.065874","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009306", +"2009310","W0563 WELL NO 02","SCHROFF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0563","13405-R","20-06163-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","13","39.0 N","8.0 E","N","","","","","406693.0","4164251.0","37.620645","-106.057326","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009310", +"2009313","W0564 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0564","11299-R","100770/12061417","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","9","40.0 N","8.0 E","N","","","","","402010.0","4176057.0","37.726549","-106.111969","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009313", +"2009314","W0564 WELL NO 04","PEPPER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0564","11300-R, 11300-R-R","15-15150-8","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","17","40.0 N","8.0 E","N","","","","","400352.0","4173673.0","37.704887","-106.130454","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009314", +"2009315","W0565 WELL NO 02","S10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0565","14205-F, 3130-F","18-07272-10","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","14","40.0 N","7.0 E","N","","","","","396326.0","4174537.0","37.712226","-106.176241","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009315", +"2009342","15CW0013 WELL NO 02-R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","08CW0008, 13CW0003, 15CW0013, W0588","12779-R, 79839-F, 90554-F","11061523/11061550","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","12","40.0 N","9.0 E","N","","","","","417613.0","4176250.0","37.729826","-105.934957","11/05/2025 13:47","https://dwr.state.co.us/Tools/Structures/2009342", +"2009348","W0591 WELL NO 01","DILLON EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0591","1348-R","04060158/09212245","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","","NW","SE","34","41.0 N","7.0 E","N","","","","","394772.0","4179324.0","37.755186","-106.194561","09/05/2014 09:04","https://dwr.state.co.us/Tools/Structures/2009348", +"2009356","W0598 WELL NO 01","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0598","911-R","100878","HENNIGH, TEDD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","12","40.0 N","7.0 E","N","","","","","397950.0","4175326.0","37.719518","-106.157930","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009356", +"2009357","W0598 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0598","912-R, 912-R-R","100878","HENNIGH, TEDD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","12","40.0 N","7.0 E","N","","","","","397955.0","4175683.0","37.722736","-106.157923","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009357", +"2009364","W0607 WELL NO 01","J-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0607","7088-R","10060719/10061061-19 PIVOT, 10063538/12212607","BEIRIGER, GRANT M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","1","40.0 N","9.0 E","N","","","","","417448.0","4177628.0","37.742230","-105.936986","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009364", +"2009365","W0607 WELL NO 02","J-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0607","6436-F","10060719/10061061-19 PIVOT, 10063538/12212607","BEIRIGER, GRANT M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","1","40.0 N","9.0 E","N","","","","","417452.0","4177803.0","37.743807","-105.936960","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009365", +"2009374","W0613 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0613","1409-R, 52558-F","79-8-841","CENTER REDI MIX INC (ROBINS, DANIEL); ROBINS, JINGER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","40.0 N","7.0 E","N","","","","","396354.0","4177717.0","37.740885","-106.176376","06/13/2013 16:34","https://dwr.state.co.us/Tools/Structures/2009374", +"2009378","W0618 WELL NO 01","P-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0618","2371-F","05060755/03241853","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","26","41.0 N","7.0 E","N","","","","","396405.0","4180919.0","37.769746","-106.176254","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009378", +"2009379","W0619 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0619","6468-R","12061266/12061355-100926","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","32","41.0 N","8.0 E","N","","","","","400429.0","4179321.0","37.755792","-106.130354","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009379", +"2009380","W0619 WELL NO 02","INNESS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0619","6469-R, 6469-R-R","12061266/12061355-100926","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SE","NW","32","41.0 N","8.0 E","N","","","","","400819.0","4179323.0","37.755853","-106.125928","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009380", +"2009403","W0635 WELL NO 02","JDS WELL NO 2 IN 07CW0064-#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0064, W0635","5134-F","11060555/11060644","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NE","SE","7","39.0 N","9.0 E","N","","","","","409535.0","4166024.0","37.636907","-106.025346","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009403", +"2009404","W0635 WELL NO 03","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0635","5320-F","11061401/10190352","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","39.0 N","9.0 E","N","","","","","408331.0","4166321.0","37.639464","-106.039027","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009404", +"2009414","W0646 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0011, W0646","4597-F","14-21162-8","FIDELITY NATIONAL TITLE (BAILEY, SONYA); JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","25","40.0 N","9.0 E","N","","","","","416562.0","4170907.0","37.681579","-105.946270","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009414", +"2009415","W0646 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0011, W0646","4598-F, 4598-F-R","14-21162-8","FIDELITY NATIONAL TITLE (BAILEY, SONYA); JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","25","40.0 N","9.0 E","N","","","","","416556.0","4170702.0","37.679731","-105.946315","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009415", +"2009416","W0646 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0011, W0646","4600-F","14-21162-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","25","40.0 N","9.0 E","N","","","","","416557.0","4170497.0","37.677883","-105.946280","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009416", +"2009417","W0646 WELL NO 04","#3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0011, W0646","4599-F, 82998-F","14-21162-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","25","40.0 N","9.0 E","N","","","","","416553.0","4170278.0","37.675909","-105.946300","01/09/2004 16:45","https://dwr.state.co.us/Tools/Structures/2009417", +"2009418","W0646 WELL NO 05","#3 RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0011, W0646","14110-R","13-10914-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","25","40.0 N","9.0 E","N","","","","","417337.0","4170394.0","37.677026","-105.937424","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009418", +"2009424","W0646 WELL NO 11B","#3 RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0011, W0646","","13-10914-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","25","40.0 N","9.0 E","N","","","","","417339.0","4170381.0","37.676909","-105.937400","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009424", +"2009428","W0647 WELL NO 01","FIELD 00","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0647","1197-R","17-04032","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2010","10/31/2025","3","20","ALAMOSA","","","SW","NW","SE","28","40.0 N","10.0 E","N","","","","","422179.0","4170826.0","37.681343","-105.882567","09/17/2019 14:55","https://dwr.state.co.us/Tools/Structures/2009428", +"2009452","W0661 WELL NO 02","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0661","1721-R","04061984/05201407","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","1","40.0 N","7.0 E","N","","","","","397169.0","4177027.0","37.734759","-106.167030","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009452", +"2009457","W0667 WELL NO 02","PLD 2 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0007, W0667","3260-F, 3260-F-R, 87852-F","09060516","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","34","41.0 N","9.0 E","N","","","","","413390.0","4179220.0","37.756201","-105.983228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009457", +"2009458","W0667 WELL NO 03","FLD 2 ART","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0667","87854-F","07-4-1015","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","NW","34","41.0 N","9.0 E","N","","","","","413786.0","4179612.0","37.759772","-105.978780","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009458", +"2009460","W0672 WELL NO 01","BIN 415","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0006, W0672","3268-F","20006502","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","15","40.0 N","7.0 E","N","","","","","394689.0","4173730.0","37.704767","-106.194693","02/06/2026 12:57","https://dwr.state.co.us/Tools/Structures/2009460", +"2009461","W0673 WELL NO 01","HAWS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0673","4385-F","11060588/11060602","PEPPER, KELBY; PEPPER, KELBY & JACQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","17","40.0 N","7.0 E","N","","","","","391460.0","4173785.0","37.704886","-106.231324","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009461", +"2009463","W0673 WELL NO 03","XT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0673","11390-R","08223643/09060248","BOTHELL, ERIC; HAWS INC. (HAWS, JOHN L.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","28","40.0 N","7.0 E","N","","","","","393429.0","4171721.0","37.686518","-106.208690","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009463", +"2009464","W0673 WELL NO 04","PIVOT JD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0673","6886-R","06-8-3512","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","9","40.0 N","7.0 E","N","","","","","392685.0","4176549.0","37.729937","-106.217838","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009464", +"2009465","W0674 WELL NO 02","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0674","8611-R, 8611-R-R","11061514/10063651","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","15","40.0 N","7.0 E","N","","","","","393893.0","4173935.0","37.706523","-106.203751","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009465", +"2009467","W0675 WELL NO 02","ALLI SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","3845-F","10062757/09060261","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","23","40.0 N","7.0 E","N","","","","","395495.0","4172924.0","37.697596","-106.185435","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009467", +"2009468","W0675 WELL NO 03","ALLI NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","6955-F, 6955-F-R","18-05903-08","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","23","40.0 N","7.0 E","N","","","","","395494.0","4173063.0","37.698849","-106.185467","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009468", +"2009471","W0675 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","6956-F","10062729/10062833","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","22","40.0 N","7.0 E","N","","","","","394682.0","4173107.0","37.699152","-106.194682","02/06/2026 12:57","https://dwr.state.co.us/Tools/Structures/2009471", +"2009472","W0675 WELL NO 09A","M5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0675","6403-R","12062575/12062708","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","22","40.0 N","7.0 E","N","","","","","393871.0","4172505.0","37.693634","-106.203792","08/04/2015 16:19","https://dwr.state.co.us/Tools/Structures/2009472", +"2009476","W0681 WELL NO 02","MYERS 12 SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0681","14710-R","24-05621-10","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","31","41.0 N","9.0 E","N","","","","","408537.0","4178563.0","37.749808","-106.038230","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009476", +"2009477","W0686 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","15CW0013, W0686","147-R, 147-R-R, 90552-F","07060372/07060923","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","4","40.0 N","10.0 E","N","","","","","421506.0","4177618.0","37.742497","-105.890931","12/01/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009477", +"2009478","W0686 WELL NO 02","BEIRIGER 12 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW0013, W0686","148-R, 148-R-R, 90553-F","062014002070/07060922","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","4","40.0 N","10.0 E","N","","","","","421490.0","4176883.0","37.735871","-105.891033","12/01/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009478", +"2009487","W0689 WELL NO 02","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0689","1869-R","07061135/07061173","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","40.0 N","10.0 E","N","","","","","418216.0","4175945.0","37.727131","-105.928080","10/26/2010 14:10","https://dwr.state.co.us/Tools/Structures/2009487", +"2009503","W0699 WELL NO 05","MCCORMICK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0699","5397-F","12062568/12061360","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","","SE","SW","31","41.0 N","8.0 E","N","","","","","399578.0","4178614.0","37.749328","-106.139915","11/21/2014 15:53","https://dwr.state.co.us/Tools/Structures/2009503", +"2009517","W0713 WELL NO 01","13A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0713","12238-R","05083021/09060271, 11061511/11061649","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","11","40.0 N","9.0 E","N","","","","","415007.0","4176293.0","37.729975","-105.964532","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009517", +"2009522","W0713 WELL NO 06","FIELD G","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0713","12243-R","09060220/09060264","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","SW","SW","SW","2","40.0 N","9.0 E","N","","","","","415316.0","4176804.0","37.734609","-105.961085","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009522", +"2009523","W0713 WELL NO 07","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0713","12244-R","08223649/07061163","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","11","40.0 N","9.0 E","N","","","","","415006.0","4176268.0","37.729750","-105.964540","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009523", +"2009526","W0714 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0714","4050-F","11061472/01201343","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","10","40.0 N","9.0 E","N","","","","","414184.0","4175586.0","37.723527","-105.973787","06/19/2013 12:22","https://dwr.state.co.us/Tools/Structures/2009526", +"2009532","W0720 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","975-R","10061894/10062063, 12212602-08223641","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","39.0 N","7.0 E","N","","","","","394592.0","4168150.0","37.654472","-106.194986","02/06/2026 12:57","https://dwr.state.co.us/Tools/Structures/2009532", +"2009536","W0720 WELL NO 06","W. FARROW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","11630-R","10063590/10063689","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","11","39.0 N","7.0 E","N","","","","","395423.0","4167221.0","37.646195","-106.185434","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009536", +"2009537","W0720 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","10761-R","10061888/10062064","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","36","40.0 N","7.0 E","N","","","","","397876.0","4169792.0","37.669640","-106.157993","02/06/2026 12:58","https://dwr.state.co.us/Tools/Structures/2009537", +"2009539","W0720 WELL NO 09","BIESAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","16369-S","10063573/10063670-100517","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","1","39.0 N","7.0 E","N","","","","","397818.0","4167930.0","37.652854","-106.158390","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009539", +"2009541","W0720 WELL NO 11","E. FARROW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0720","6404-F","10063611/10063639-100479","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","11","39.0 N","7.0 E","N","","","","","396185.0","4167111.0","37.645291","-106.176782","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009541", +"2009542","W0720 WELL NO 12","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW0009, W0720","5911-F","09212328/10062068","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","36","40.0 N","7.0 E","N","","","","","397877.0","4169486.0","37.666883","-106.157939","07/16/2014 11:00","https://dwr.state.co.us/Tools/Structures/2009542", +"2009544","W0721 WELL NO 01","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0721","6739-R","101023/08061993","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","29","41.0 N","8.0 E","N","","","","","401229.0","4180909.0","37.770189","-106.121490","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009544", +"2009549","W0724 WELL NO 01","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0724","","10061883/10062093","ENSZ, DARWIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","22","40.0 N","6.0 E","N","","","","","384947.0","4173217.0","37.698973","-106.305103","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009549", +"2009550","W0725 WELL NO 01","13 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0725","1967-R","01061417/12230528","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","14","40.0 N","8.0 E","N","","","","","405244.0","4174395.0","37.711912","-106.075060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009550", +"2009567","W0744 WELL NO 01","SHOP ON B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0744","11264-R-R","02061546/02061574","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","27","41.0 N","7.0 E","N","","","","","394010.0","4180122.0","37.762289","-106.203326","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009567", +"2009572","W0747 WELL NO 03","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0747","1323-R","22-02717-8","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","16","40.0 N","8.0 E","N","","","","","401992.0","4174603.0","37.713444","-106.111978","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009572", +"2009573","W0747 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0039, W0747","1324-R","22-02720-08","CARPENTER, CODY; CARPENTER, KENNETH L.; GOEHL RANCHES","RGWCD SD1","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","12","40.0 N","8.0 E","N","","","","","407671.0","4175275.0","37.720090","-106.047641","04/28/2014 12:27","https://dwr.state.co.us/Tools/Structures/2009573", +"2009574","W0747 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0747","1325-R","22-02718-08","CARPENTER, CODY; CARPENTER, KENNETH L.; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","7","40.0 N","9.0 E","N","","","","","408494.0","4175401.0","37.721309","-106.038320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009574", +"2009576","W0747 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0747","1347-R, 1347-R-R","22-02716-08","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","17","40.0 N","8.0 E","N","","","","","401178.0","4174469.0","37.712149","-106.121193","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009576", +"2009577","W0747 WELL NO 08","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0039, W0747","12910-F, 90504-F","09-1392-6, 15-08239-8","CARPENTER, CODY; CARPENTER, KENNETH L.; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","12","40.0 N","8.0 E","N","","","","","407684.0","4176019.0","37.726797","-106.047588","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009577", +"2009587","W0757 WELL NO 01","HOME #2 - PEPPER #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0757","5770-F","10060644/11060670","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","10","40.0 N","7.0 E","N","","","","","393899.0","4176308.0","37.727907","-106.204029","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009587", +"2009588","W0757 WELL NO 03","D CROSS RD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0757","","12204469","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","4","40.0 N","7.0 E","N","","","","","393089.0","4177149.0","37.735391","-106.213343","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009588", +"2009605","W0762 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0762","4083-F","06123290/12212589, 07202105/12212616","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","12","40.0 N","9.0 E","N","","","","","416591.0","4176444.0","37.731482","-105.946576","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009605", +"2009606","W0762 WELL NO 02","HP-PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0762","3566-F","07061118/07061158","KRUSE, MICHAEL; ROBINSON, JOLENE M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","5","40.0 N","10.0 E","N","","","","","419872.0","4176980.0","37.736605","-105.909405","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009606", +"2009609","W0763 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0763","4322-F","06-8-3988","CAH FARM, LLC (HAYES, CHRIS); JOHNSON, SHANE R. & ASHLEY C.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","14","39.0 N","7.0 E","N","","","","","395365.0","4164537.0","37.622002","-106.185707","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009609", +"2009681","W0808 WELL NO 01","MCEWEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0808","6070-R","07-6-1036","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","17","40.0 N","6.0 E","N","","","","","381063.0","4174098.0","37.706416","-106.349294","08/06/2020 16:58","https://dwr.state.co.us/Tools/Structures/2009681", +"2009686","W0811 WELL NO 03","#15 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0811","15133-F","24-00564-08","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","17","39.0 N","9.0 E","N","","","","","409953.0","4165283.0","37.630270","-106.020517","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009686", +"2009688","W0812 WELL NO 01","MS5 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0812","","10060651/10061106, 22-02299-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","30","39.0 N","9.0 E","N","","","","","409089.0","4161949.0","37.600139","-106.029893","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009688", +"2009698","W0818 WELL NO 01","FIELD A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","12048-R","10062687/10062867","HOLLAND, GLEN & MARTHA; HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","23","40.0 N","8.0 E","N","","","","","405197.0","4172261.0","37.692676","-106.075316","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009698", +"2009701","W0818 WELL NO 06","#1 AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","6186-R, 2896-F","09061282/09061369","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","25","40.0 N","8.0 E","N","","","","","407604.0","4171477.0","37.685857","-106.047919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009701", +"2009702","W0818 WELL NO 08","#2 AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","10647-R","09061297/06214532","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","30","40.0 N","9.0 E","N","","","","","408442.0","4171724.0","37.688167","-106.038447","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009702", +"2009703","W0818 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","10771-R-R","062014002068/09061370","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","19","40.0 N","9.0 E","N","","","","","409305.0","4172396.0","37.694309","-106.028744","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009703", +"2009705","W0818 WELL NO 11","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0818","1480-R","04-8-4191","HOLLAND, ARTHUR L.; HOLLAND, GLEN & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","9","40.0 N","9.0 E","N","","","","","411837.0","4175236.0","37.720150","-106.000373","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009705", +"2009721","W0822 WELL NO 06","16 SIDE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0822","6897-F-R","06-8-2788","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","30","40.0 N","8.0 E","N","","","","","398717.0","4171481.0","37.684954","-106.148694","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009721", +"2009739","W0840 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0840","6487-R","10062685/10062895","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","13","40.0 N","8.0 E","N","","","","","407643.0","4173799.0","37.706786","-106.047771","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009739", +"2009741","W0840 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0840","6489-R","12061253/12061337","BAKER, TROY & JULIE; EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","12","40.0 N","8.0 E","N","","","","","406873.0","4175251.0","37.719793","-106.056691","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009741", +"2009743","W0841 WELL NO 04","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0841","4006-F","05060771/05060797","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","39.0 N","8.0 E","N","","","","","404313.0","4167805.0","37.652428","-106.084756","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009743", +"2009754","W0849 WELL NO 01","RD B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0849","1441-R","05060235/05060284","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","26","41.0 N","7.0 E","N","","","","","396379.0","4180111.0","37.762462","-106.176434","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009754", +"2009771","W0852 WELL NO 13","BEAMON CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0852","10376-F","06-8-3919","PAULSON, BRANDON; PAULSON, RONALD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","15","40.0 N","7.0 E","N","","","","","393911.0","4174639.0","37.712869","-106.203649","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009771", +"2009788","W0866 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0866","3508-F","12212666/12230533","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","6","40.0 N","9.0 E","N","","","","","409336.0","4177781.0","37.742841","-106.029064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009788", +"2009795","W0871 WELL NO 02","WEST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0871","13462-F","062013000928/062019001001","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","8","39.0 N","10.0 E","N","","","","","419717.0","4167074.0","37.647316","-105.910072","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009795", +"2009799","W0872 WELL NO 03","FIELD 1 S WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0872","926-R-R","12212679/12204370","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","7","39.0 N","9.0 E","N","","","","","408341.0","4166751.0","37.643340","-106.038968","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009799", +"2009800","W0872 WELL NO 04","FIELD 1S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0872","5410-F","04060176/04060125","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","7","39.0 N","9.0 E","N","","","","","408334.0","4166624.0","37.642195","-106.039031","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009800", +"2009804","W0872 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0001, W0872","52063-, 152171-, 152171--A","20418255","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2021","10/31/2025","3","20","ALAMOSA","","","","SE","SE","7","39.0 N","9.0 E","N","","","","","409831.0","4165524.0","37.632430","-106.021930","01/16/2024 12:17","https://dwr.state.co.us/Tools/Structures/2009804", +"2009816","W0888 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0020, W0888","10592-F","11060534/11060650","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","13","40.0 N","7.0 E","N","","","","","397933.0","4173916.0","37.706810","-106.157925","02/06/2026 12:59","https://dwr.state.co.us/Tools/Structures/2009816", +"2009818","W0888 WELL NO 04","9S CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0888","10591-F","23-05041-08","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","24","40.0 N","7.0 E","N","","","","","397135.0","4173103.0","37.699395","-106.166861","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009818", +"2009819","W0888 WELL NO 05","2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0888","10590-F","05-8-4411","MIX, ROGER & ROSALIE; SCOTT LIVING TRUST (SCOTT, LARRY); SCOTT, LARRY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","24","40.0 N","7.0 E","N","","","","","397920.0","4173109.0","37.699537","-106.157959","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009819", +"2009834","W0894 WELL NO 03","112 FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0894","637-R","06123280/112018000048","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","36","41.0 N","7.0 E","N","","","","","397167.0","4178688.0","37.749727","-106.167288","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009834", +"2009835","W0894 WELL NO 04","GREY FEELFER- GAK FARMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW3010, W0894","4460-F","06123275/05201300800/101328","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","36","41.0 N","7.0 E","N","","","","","398063.0","4178564.0","37.748710","-106.157102","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009835", +"2009836","W0894 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW3010, W0894","15512-F","06123275/05201300800/101328","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","SW","SW","36","41.0 N","7.0 E","N","","","","","397510.0","4178540.0","37.748432","-106.163374","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009836", +"2009846","W0896 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0896","5343-F","092062746/12061326","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","12","39.0 N","9.0 E","N","","","","","416454.0","4166975.0","37.646133","-105.947044","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009846", +"2009865","W0902 WELL NO 02","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0902","1891-R","12061166/12061426-100746","HART JR, HOWARD L. & CYNTHIA J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","39.0 N","7.0 E","N","","","","","395413.0","4165750.0","37.632938","-106.185337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009865", +"2009867","W0903 WELL NO JORDE 02","FLOOD WELL 31 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0903","11967-R","04060813/04060867","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","31","41.0 N","9.0 E","N","","","","","409356.0","4179228.0","37.755883","-106.029018","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009867", +"2009905","W0921 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0921","5357-F","100898/09061368","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","18","40.0 N","9.0 E","N","","","","","408462.0","4173972.0","37.708427","-106.038503","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009905", +"2009906","W0921 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0921","12531-R","100895/12061376","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","18","40.0 N","9.0 E","N","","","","","408480.0","4174960.0","37.717333","-106.038423","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009906", +"2009932","16CW3010 WELL NO 1R","#20, W0928 WELL NO 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW3010, W0928","44-R, 44-R-R","20-03934-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","16","39.0 N","9.0 E","N","","","","","411562.0","4165324.0","37.630796","-106.002290","11/05/2025 14:04","https://dwr.state.co.us/Tools/Structures/2009932", +"2009934","W0928 WELL NO 03","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0928","15931-F","17-09054-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","16","39.0 N","9.0 E","N","","","","","412745.0","4165066.0","37.628584","-105.988854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009934", +"2009940","W0938 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0938","20243-R","05060747/05081901","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","35","41.0 N","7.0 E","N","","","","","396334.0","4178546.0","37.748354","-106.176722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009940", +"2009944","W0941 WELL NO 01","4 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0941","20685-R","08230916","STAHL, STANLEY; WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","4","39.0 N","10.0 E","N","","","","","422140.0","4167202.0","37.648679","-105.882622","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009944", +"2009945","W0941 WELL NO 02","ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0941","20685-S","06-8-4584","STAHL, STANLEY; WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","4","39.0 N","10.0 E","N","","","","","422143.0","4167220.0","37.648841","-105.882590","12/21/2011 09:30","https://dwr.state.co.us/Tools/Structures/2009945", +"2009946","W0941 WELL NO 03","#20 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0941","11100-F","09062727/09062019","BEIRIGER, BRANDON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","8","40.0 N","10.0 E","N","","","","","420035.0","4176145.0","37.729094","-105.907463","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009946", +"2009947","W0941 WELL NO 04","RC CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0941","379-R","06-6-2155","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","16","39.0 N","10.0 E","N","","","","","421295.0","4165397.0","37.632339","-105.892005","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009947", +"2009948","W0941 WELL NO 05","RICE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0941","20914-R","GP11-1051-8","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","7","39.0 N","10.0 E","N","","","","","418906.0","4166262.0","37.639927","-105.919174","09/06/2007 16:54","https://dwr.state.co.us/Tools/Structures/2009948", +"2009999","W0997 WELL NO 01","PLATINUM POTATO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0997","14900-R","12061235/12061349","MRM INVESTMENTS LLC (MCCORMICK, MORGAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NE","SW","33","41.0 N","8.0 E","N","","","","","402747.0","4179015.0","37.753284","-106.104003","07/23/2021 15:20","https://dwr.state.co.us/Tools/Structures/2009999", +"2010005","W1000 WELL NO 01","3P/4-PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1000","15932-F","02116766","CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","9","39.0 N","9.0 E","N","","","","","412767.0","4165872.0","37.635850","-105.988701","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010005", +"2010006","W1000 WELL NO 02","3C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1000","10688-F","11061703","CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SE","9","39.0 N","9.0 E","N","","","","","412364.0","4165709.0","37.634342","-105.993248","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010006", +"2010007","W1003 WELL NO 01","SW CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1003","6455-R","04060152/04060126","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","40.0 N","8.0 E","N","","","","","406052.0","4175274.0","37.719917","-106.066008","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010007", +"2010008","W1003 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1003","6077-R","08061995/08062016","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","40.0 N","8.0 E","N","","","","","407668.0","4175161.0","37.719063","-106.047660","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010008", +"2010009","W1004 WELL NO 01","K5-4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1004","12566-R","09061320/09061393","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","21","40.0 N","8.0 E","N","","","","","402772.0","4172853.0","37.697757","-106.102896","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010009", +"2010010","W1004 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1004","12567-R","09061309/09061400","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","21","40.0 N","8.0 E","N","","","","","402771.0","4172933.0","37.698478","-106.102918","02/06/2026 12:59","https://dwr.state.co.us/Tools/Structures/2010010", +"2010011","W1004 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12568-R","09061310/09061406","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","21","40.0 N","8.0 E","N","","","","","402769.0","4173031.0","37.699361","-106.102953","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010011", +"2010013","W1004 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12576-R","","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2014","3","20","RIO GRANDE","","","SW","SW","SE","16","40.0 N","8.0 E","N","","","","","402855.0","4173648.0","37.704930","-106.102060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010013", +"2010014","10CW0021 WELL NO 6R","K6- NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0021, W1004","12577-R, 12577-R-R","14-17765-8","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","16","40.0 N","8.0 E","N","","","","","402787.0","4173835.0","37.706608","-106.102857","11/05/2025 14:24","https://dwr.state.co.us/Tools/Structures/2010014", +"2010015","W1004 WELL NO 07","K4-3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12570-R, 12570-R-R","21-06017-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","22","40.0 N","8.0 E","N","","","","","403597.0","4173494.0","37.703621","-106.093624","02/07/2011 14:28","https://dwr.state.co.us/Tools/Structures/2010015", +"2010017","W1004 WELL NO 09","K4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12572-R, 12572-R-R","20-06162-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","22","40.0 N","8.0 E","N","","","","","403591.0","4173010.0","37.699259","-106.093628","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010017", +"2010018","W1004 WELL NO 10","K1-6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12573-R","09061309/04060170","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","22","40.0 N","8.0 E","N","","","","","403591.0","4172813.0","37.697483","-106.093602","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010018", +"2010019","W1004 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12575-R","20-06164","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","22","40.0 N","8.0 E","N","","","","","403581.0","4172684.0","37.696320","-106.093698","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010019", +"2010020","W1004 WELL NO 12","K1-7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1004","12574-R","20-06164","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","22","40.0 N","8.0 E","N","","","","","403581.0","4172532.0","37.694950","-106.093678","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010020", +"2010045","W1021 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0013, W1021","12059-R-R","052018002644/12062877","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","1","40.0 N","9.0 E","N","","","","","416570.0","4177621.0","37.742087","-105.946949","06/18/2010 11:36","https://dwr.state.co.us/Tools/Structures/2010045", +"2010046","W1021 WELL NO 02","QUARTER #1 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1021","12060-R","09212329/100283","HOLLAND, DAVID; SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","2","40.0 N","9.0 E","N","","","","","415970.0","4177614.0","37.741969","-105.953757","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010046", +"2010047","W1021 WELL NO 04","WALBURGS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1021","15371-F","06-6-2113","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","33","40.0 N","10.0 E","N","","","","","422178.0","4168868.0","37.663696","-105.882369","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010047", +"2010057","W1023 WELL NO 01","#14 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1023","15887-F","23-09450-08","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","18","39.0 N","9.0 E","N","","","","","409120.0","4165118.0","37.628701","-106.029936","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010057", +"2010088","W1041 WELL NO 05","10N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1041","8612-R","09061302/09061391","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","40.0 N","7.0 E","N","","","","","397154.0","4175697.0","37.722773","-106.167012","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010088", +"2010089","W1041 WELL NO 07","S10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1041","6603-R","09061295/09061407","CENTER & RIO GRANDE CONSERVATION DISTRICTS; FREEL, MATTEA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","13","40.0 N","7.0 E","N","","","","","397943.0","4174863.0","37.715345","-106.157944","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010089", +"2010090","W1041 WELL NO 08","SHRECK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1041","6405-F","03063647/03063929","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","7","40.0 N","8.0 E","N","","","","","398777.0","4175288.0","37.719268","-106.148543","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010090", +"2010110","W1047 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1047","13276-R, 13276-R-R","12061237/12061343","ORTEGA, ANGELINA; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2013","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","5","39.0 N","9.0 E","N","","","","","410000.0","4168536.0","37.659591","-106.020386","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010110", +"2010111","W1047 WELL NO 02","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","12CW0030, W1047","13277-R, 13277-R-R","100891/12061367","ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2017","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","39.0 N","9.0 E","N","","","","","410822.0","4168568.0","37.659959","-106.011072","07/12/2017 11:25","https://dwr.state.co.us/Tools/Structures/2010111", +"2010112","W1047 WELL NO 05","FIELD #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1047","15930-F","100893/12061369","ORTEGA, KATHERINE; ORTEGA, LAWRENCE B.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","32","40.0 N","9.0 E","N","","","","","410829.0","4169474.0","37.668125","-106.011103","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010112", +"2010120","W1057 WELL NO 04","SIDE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1057","5331-F","100175, 20-06967-08","HENNIGH, BARRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","12","40.0 N","7.0 E","N","","","","","398351.0","4176092.0","37.726466","-106.153488","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010120", +"2010180","W1099 WELL NO 01","FARBOR-36 NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","11CW0014, W1099","8768-R, 8768-R-R, 8768-R-R","20-03209","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","31","41.0 N","10.0 E","N","","","","","419145.0","4179073.0","37.755404","-105.917888","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010180", +"2010188","W1103 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0015, W1103","7260-R","07201700374/11060610 - #1, 12062603/11061652-TRUCK SPOUT","ROGERS BROTHERS FARMS (ROGERS, GREGG & SANDRA); ROGERS, JUSTIN G.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","5","40.0 N","10.0 E","N","","","","","420668.0","4177226.0","37.738891","-105.900399","01/30/2010 13:00","https://dwr.state.co.us/Tools/Structures/2010188", +"2010210","W1120 WELL NO 02","FIELD #53","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1120","11060-F","15-10531","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NW","34","40.0 N","10.0 E","N","","","","","423109.0","4170123.0","37.675085","-105.871947","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010210", +"2010213","W1125 WELL NO 02","1/2 CIRCLE, W PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1125","1526-R","05083042/05083090-SOUTH TFM, 10060730/052018001071","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","5","39.0 N","7.0 E","N","","","","","391377.0","4168308.0","37.655521","-106.231449","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010213", +"2010216","W1127 WELL NO 01","#5 CORNER VARIANCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1127","11359-R","062014002069/11060680","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","21","40.0 N","8.0 E","N","","","","","401966.0","4172686.0","37.696166","-106.112014","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010216", +"2010218","W1128 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1128","8783-R","10063600/01250064","BENSON, JON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","17","40.0 N","6.0 E","N","","","","","382139.0","4173996.0","37.705636","-106.337074","08/06/2020 17:01","https://dwr.state.co.us/Tools/Structures/2010218", +"2010219","W1136 WELL NO 02","W-2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0010, W1136","5428-F-R","07-8-1285","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","6","40.0 N","10.0 E","N","60","W","1584","N","418272.7","4177873.3","37.744512","-105.927650","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010219", +"2010231","W1152 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1152","15313-R, 990-R, 15313-F-R","11060557/11060656","SELF, CLINTON; SELF, JOANN","RGWCD SD1","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","14","39.0 N","7.0 E","N","","","","","396165.0","4164662.0","37.623219","-106.176661","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010231", +"2010236","W1155 WELL NO 01","#1 PIERCE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1155","15967-R","10061981/10062002","LESTER, HOWARD V. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","22","39.0 N","8.0 E","N","","","","","403678.0","4163140.0","37.610321","-106.091338","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010236", +"2010237","W1155 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1155","14944-R","20-05794-08","LESTER, HOWARD V. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","SW","22","39.0 N","8.0 E","N","","","","","404203.0","4162880.0","37.608033","-106.085357","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010237", +"2010240","W1157 WELL NO 01","OLD NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1157","46612-F, 46612-F-R","212141984","MONTE VISTA POTATO GROWERS COOP ASSOCIATION","RGWCD SD1","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","33","40.0 N","8.0 E","N","","","","","402812.0","4168940.0","37.662499","-106.101920","08/06/2020 17:12","https://dwr.state.co.us/Tools/Structures/2010240", +"2010245","W1167 WELL NO 01","ABEYTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1167","5695-F","05060233/06080396","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","26","40.0 N","6.0 E","N","","","","","386545.0","4171761.0","37.686052","-106.286754","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010245", +"2010249","18CW3004 WELL NO. 1-RR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW3004, W1168","58182-, 58182--A","19053760, 222271916","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","SE","NE","10","40.0 N","9.0 E","N","","","","","414961.0","4176001.0","37.727339","-105.965019","01/17/2024 13:41","https://dwr.state.co.us/Tools/Structures/2010249", +"2010262","W1174 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1174","15135-R, 15135-R-R","09062714/10060137","COLORADO STATE LAND BOARD; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","8","40.0 N","7.0 E","N","","","","","391498.0","4175448.0","37.719876","-106.231141","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010262", +"2010263","W1175 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1175","8691-R","12204459/06200656","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","23","40.0 N","10.0 E","N","","","","","424689.0","4172783.0","37.699189","-105.854307","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010263", +"2010270","W1181 WELL NO 02","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1181","12944-R","10061892/062019000986","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","1","38.0 N","9.0 E","N","","","","","417189.0","4158459.0","37.569451","-105.937750","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010270", +"2010272","W1181 WELL NO 04","# 3 WIPER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1181","3362-F","12212672/12230541","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","34","39.0 N","9.0 E","N","","","","","413924.0","4160573.0","37.588203","-105.974966","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010272", +"2010292","W1187 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1187","23-R","12061257/12230546","YEAGER, JAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","19","40.0 N","7.0 E","N","","","","","389788.0","4173091.0","37.698432","-106.250183","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010292", +"2010295","W1190 WELL NO 01","DILLON WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1190","6422-F","14-06595-4","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","34","41.0 N","7.0 E","N","","","","","394379.0","4179693.0","37.758466","-106.199075","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010295", +"2010304","W1197 WELL NO 01","NEW REDRILL WDID: 2014481, RE-DRILLED 12011RR","Inactive structure which physically exist, but no diversion records are maintained (I)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","11CW0018, W1197","12011-R","","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2012","3","20","ALAMOSA","","","","SE","NW","6","40.0 N","10.0 E","N","","","","","419032.0","4177696.0","37.742984","-105.919017","10/11/2023 16:45","https://dwr.state.co.us/Tools/Structures/2010304", +"2010314","W1199 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1199","1654-R","08062030/08061993","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2013","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","28","41.0 N","8.0 E","N","","","","","402028.0","4180192.0","37.763814","-106.112323","10/22/2013 09:13","https://dwr.state.co.us/Tools/Structures/2010314", +"2010328","W1204 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1204","12488-R, 12488-R-R","07060370/07060939","BAKER, WALTER; SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","34","41.0 N","7.0 E","N","","","","","393994.0","4178579.0","37.748383","-106.203282","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010328", +"2010329","W1204 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1204","12489-R","07060370/07060939","BAKER, WALTER; SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","34","41.0 N","7.0 E","N","","","","","393933.0","4178726.0","37.749700","-106.203996","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010329", +"2010330","W1204 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1204","12114-F","07060385/07060917","BAKER, WALTER; SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","34","41.0 N","7.0 E","N","","","","","394726.0","4178571.0","37.748395","-106.194974","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010330", +"2010334","W1212 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1212","9512-F","18-11222-06","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2012","10/31/2025","3","20","ALAMOSA","","","","NW","NW","3","39.0 N","10.0 E","N","","","","","423330.0","4168489.0","37.660378","-105.869269","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010334", +"2010335","W1212 WELL NO 02","LAMBERT RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1212","15011-R","19-07357-08","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","3","39.0 N","10.0 E","N","","","","","423237.0","4168512.0","37.660577","-105.870326","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010335", +"2010340","W1217 WELL NO 01","GK HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1217","14902-F","22-03020-06","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","33","40.0 N","10.0 E","N","550","W","800","S","421520.2","4168963.3","37.664497","-105.889839","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010340", +"2010353","W1229 WELL NO 09","#4 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1229","6146-F","23-06549-06","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","14","39.0 N","10.0 E","N","","","","","424456.0","4165170.0","37.630559","-105.856161","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010353", +"2010354","W1229 WELL NO 10","#4 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1229","14070-R","GP12-3462-8","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","14","39.0 N","10.0 E","N","","","","","424568.0","4165120.0","37.630117","-105.854886","09/17/2007 13:56","https://dwr.state.co.us/Tools/Structures/2010354", +"2010363","W1230 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1230","4908-F","02060451/10062873","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","11","39.0 N","10.0 E","N","","","","","424495.0","4166195.0","37.639800","-105.855825","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010363", +"2010396","W1260 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1260","6860-F","06-8-4929","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","14","39.0 N","8.0 E","N","","","","","405884.0","4164672.0","37.624356","-106.066546","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010396", +"2010397","W1260 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1260","10706-R, 10706-R-R","06-8-4929","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","14","39.0 N","8.0 E","N","","","","","405879.0","4164233.0","37.620399","-106.066546","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010397", +"2010400","W1260 WELL NO 05","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0008, W1260","10703-R","A201B516000","PFANNENSTIEL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","23","39.0 N","8.0 E","N","","","","","405040.0","4163168.0","37.610715","-106.075913","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010400", +"2010401","W1260 WELL NO 06","S/W 1/2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1260","6859-F","PC0705190000","PFANNENSTIEL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","23","39.0 N","8.0 E","N","","","","","405027.0","4162530.0","37.604964","-106.075978","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010401", +"2010402","W1260 WELL NO 07","PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1260","10704-R","R603D716000","PFANNENSTIEL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","NW","23","39.0 N","8.0 E","N","","","","","405659.0","4163183.0","37.610914","-106.068903","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010402", +"2010404","W1260 WELL NO 09","EAST CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1260","10705-R","K3F6619000","PFANNENSTIEL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SW","SE","23","39.0 N","8.0 E","N","","","","","406237.0","4162505.0","37.604863","-106.062268","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010404", +"2010405","W1260 WELL NO 10","JDS #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1260","6857-F","10063551/10063726","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","24","39.0 N","8.0 E","N","","","","","406666.0","4163173.0","37.610927","-106.057494","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010405", +"2010433","W1266 WELL NO 05","B-3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1266","8910-F","05062237/05062218","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","16","40.0 N","9.0 E","N","","","","","411748.0","4174779.0","37.716023","-106.001327","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010433", +"2010442","W1270 WELL NO 01","RESERVOIR PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1270","6697-R","06-8-4583","MASON FAMILY HOLDINGS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","26","40.0 N","10.0 E","N","","","","","424632.0","4171713.0","37.689542","-105.854842","04/03/2000 00:00","https://dwr.state.co.us/Tools/Structures/2010442", +"2010448","W1270 WELL NO 07","HOME PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1270","16251-F, 16251-F-R","09061949/04061505","MASON FAMILY HOLDINGS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","25","40.0 N","10.0 E","N","","","","","426223.0","4171168.0","37.684759","-105.836744","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010448", +"2010521","W1320 WELL NO 01","VALLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1320","189-R","23-03381-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","19","40.0 N","7.0 E","N","","","","","388983.0","4172331.0","37.691487","-106.259196","08/05/2015 11:50","https://dwr.state.co.us/Tools/Structures/2010521", +"2010543","W1340 WELL NO 01","M3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1340","5470-F","12062615/12062710","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","23","40.0 N","7.0 E","N","","","","","395490.0","4172727.0","37.695820","-106.185464","07/31/2015 13:03","https://dwr.state.co.us/Tools/Structures/2010543", +"2010544","W1340 WELL NO 02","M3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1340","813-R, 813-R-R","12062615/12062710","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","23","40.0 N","7.0 E","N","","","","","395492.0","4172847.0","37.696902","-106.185458","07/31/2015 13:04","https://dwr.state.co.us/Tools/Structures/2010544", +"2010546","W1340 WELL NO 04","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1340","14084-R","02061565/02061590","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","27","40.0 N","7.0 E","N","","","","","395459.0","4171353.0","37.683435","-106.185618","08/04/2015 13:06","https://dwr.state.co.us/Tools/Structures/2010546", +"2010549","W1343 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1343","407-R","03063656/03063695","KEVIN HANSON FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","19","40.0 N","8.0 E","N","","","","","400342.0","4173106.0","37.699776","-106.130490","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010549", +"2010550","W1343 WELL NO 05","JORDAN EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1343","12068-F","03063654/03241857","KEVIN HANSON FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","20","40.0 N","8.0 E","N","","","","","401152.0","4173260.0","37.701252","-106.121324","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010550", +"2010559","W1352 WELL NO 02","FIELD #26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1352","7303-R","22-08354-08, 24-06254-06","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","25","40.0 N","9.0 E","N","","","","","416675.0","4171532.0","37.687222","-105.945060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010559", +"2010560","W1352 WELL NO 03","FIELD #26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1352","5881-F","22-08354-08, 24-06254-06","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","25","40.0 N","9.0 E","N","","","","","416862.0","4171519.0","37.687121","-105.942938","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010560", +"2010561","W1352 WELL NO 04","FILED #25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1352","15515-F","15-04671-8, 24-07179-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","23","40.0 N","9.0 E","N","","","","","416155.0","4172348.0","37.694528","-105.951051","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010561", +"2010568","W1353 WELL NO 02","#17 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1353","9424-F","10060718/10061041","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COONEY PROPERTIES 108 LLC (COONEY, TIMOTHY J.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","1","40.0 N","9.0 E","N","","","","","417436.0","4176921.0","37.735857","-105.937042","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010568", +"2010597","W1373 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0006, W1373","27188-","032017004930/03070959","HART, LEWIS & MELISSA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","NE","24","39.0 N","7.0 E","N","","","","","398417.0","4163689.0","37.614702","-106.151011","08/06/2020 17:13","https://dwr.state.co.us/Tools/Structures/2010597", +"2010618","W1377 WELL NO 01R","YOUTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1377","14265-R-R","03060387/03060425","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","28","41.0 N","7.0 E","N","","","","","392817.0","4181344.0","37.773162","-106.217048","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010618", +"2010622","W1380 WELL NO 01","GRAHAM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1380","12493-R","04062001/04062031","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","NW","NW","SE","34","41.0 N","8.0 E","N","","","","","404456.0","4178843.0","37.751914","-106.084584","02/05/2015 10:32","https://dwr.state.co.us/Tools/Structures/2010622", +"2010629","W1381 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1381","3213-F","04062006","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2013","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","34","41.0 N","8.0 E","N","","","","","403643.0","4178735.0","37.750856","-106.093797","10/22/2013 09:05","https://dwr.state.co.us/Tools/Structures/2010629", +"2010676","W1404 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1404","4009-F","09061276/09061363","HOLLAND, ARTHUR L.; NYE, WILLIAM","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","17","40.0 N","9.0 E","N","","","","","410148.0","4173727.0","37.706386","-106.019348","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010676", +"2010677","W1404 WELL NO 04","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1404","13912-R","09061322/09061368","HOLLAND, ARTHUR L.; NYE, WILLIAM","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","17","40.0 N","9.0 E","N","","","","","410965.0","4173714.0","37.706349","-106.010079","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010677", +"2010686","W1406 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1406","57640-, 28722-F","211115378","LNMARK FRONTIER LLC (FALCONE, MARK); RATCLIFF, RANDY","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","6","40.0 N","8.0 E","N","","","","","398947.0","4176954.0","37.734300","-106.146846","02/06/2026 13:01","https://dwr.state.co.us/Tools/Structures/2010686", +"2010696","W1412 WELL NO 01","KEMERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1412","6416-F","14-11206-6","KRUSE, MICHAEL","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","6","39.0 N","11.0 E","N","","","","","428618.0","4167302.0","37.650106","-105.809205","08/19/2014 09:15","https://dwr.state.co.us/Tools/Structures/2010696", +"2010705","W1420 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1420","5992-R-R","11060500/11060647","NASH, ELIZABETH J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","25","40.0 N","6.0 E","N","","","","","387356.0","4171469.0","37.683521","-106.277513","07/23/2021 15:24","https://dwr.state.co.us/Tools/Structures/2010705", +"2010719","W1425 WELL NO IRR 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1425","12275-F-R","12061205/12061400","CROWDER, LARRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","32","39.0 N","9.0 E","N","","","","","411177.0","4160428.0","37.586636","-106.006058","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010719", +"2010723","W1439 WELL NO 01","MYERS 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1439","3375-F","15-11370-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","34","41.0 N","9.0 E","N","","","","","413597.0","4178792.0","37.752364","-105.980828","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010723", +"2010725","W1440 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1440","13870-R","07-8-1550","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","9","39.0 N","10.0 E","N","","","","","421335.0","4166589.0","37.643085","-105.891681","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010725", +"2010732","W1443 WELL NO 01","WEST PUMP AT TERRYS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1443","13963-F","06-6-1979","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","10","40.0 N","10.0 E","N","","","","","423873.0","4175966.0","37.727808","-105.863895","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010732", +"2010754","W1451 WELL NO PUMP 01","FIELD #69","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1451","11127-R","15-09406-8, 21-02220","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","17","40.0 N","10.0 E","N","","","","","420608.0","4173673.0","37.706866","-105.900692","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010754", +"2010755","W1451 WELL NO PUMP 02","FIELD #70","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1451","11128-R, 11128-R-R","13096538","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","20","40.0 N","10.0 E","N","","","","","420648.0","4172832.0","37.699290","-105.900146","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010755", +"2010786","W1461 WELL NO 02","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1461","5467-F","09060702/09060728","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","28","40.0 N","9.0 E","N","","","","","412880.0","4170753.0","37.679849","-105.988003","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010786", +"2010788","W1461 WELL NO 04","7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1461","5468-F, 5468-F-R","09060698/09060758","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","27","40.0 N","9.0 E","N","","","","","413723.0","4170746.0","37.679865","-105.978443","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010788", +"2010789","W1461 WELL NO 06","FIELD #24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1461","4648-F","13-14450-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","12","39.0 N","9.0 E","N","","","","","416885.0","4165891.0","37.636403","-105.942036","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010789", +"2010790","W1461 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1461","59652-F","19857616","SPUD SELLER, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","9","39.0 N","8.0 E","N","","","","","402596.0","4165625.0","37.632602","-106.103927","08/06/2020 17:14","https://dwr.state.co.us/Tools/Structures/2010790", +"2010820","W1465 WELL NO 02","#3 AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1465","6203-R","06113559/09061371","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","19","40.0 N","9.0 E","N","20","W","2000","S","408435.9","4172560.6","37.695709","-106.038621","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010820", +"2010821","W1465 WELL NO 04","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1465","5502-F","09061280/09061375","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","40.0 N","9.0 E","N","","","","","410203.0","4172668.0","37.696848","-106.018594","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010821", +"2010822","W1465 WELL NO 05","MINI PIVOT-#1 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1465","10966-R, 10966-R-R","GP12-0847-6","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","20","40.0 N","9.0 E","N","","","","","410166.0","4172808.0","37.698106","-106.019030","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010822", +"2010823","W1465 WELL NO 06","WINDBREAK AT SHOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1465","10967-R","212517176","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","40.0 N","9.0 E","N","","","","","410146.0","4172746.0","37.697546","-106.019250","01/07/2022 08:14","https://dwr.state.co.us/Tools/Structures/2010823", +"2010846","W1477 WELL NO IRR 01","EAST ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1477","6017-R","19-03334-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","1","39.0 N","8.0 E","N","","","","","407561.0","4168595.0","37.659880","-106.048041","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010846", +"2010854","W1479 WELL NO IRR 04","WEST ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1479","6088-R","18-05780-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","1","39.0 N","8.0 E","N","","","","","407149.0","4168383.0","37.657928","-106.052685","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010854", +"2010855","W1479 WELL NO IRR 05","WEST ROSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1479","5280-F","18-05780-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SJ FARMS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","1","39.0 N","8.0 E","N","","","","","406763.0","4168233.0","37.656537","-106.057041","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010855", +"2010878","W1496 WELL NO 01","JDS #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1496","16126-F","11061401/10190352","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","39.0 N","9.0 E","N","","","","","408334.0","4165944.0","37.636067","-106.038946","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010878", +"2010881","W1506 WELL NO 02","MYERS 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1506","10414-F","11060505/11060683","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","35","41.0 N","9.0 E","N","","","","","415029.0","4179206.0","37.756229","-105.964623","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010881", +"2010888","W1514 WELL NO 05","PARK WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1514","15948-R, 15948-R-R","07-4-1254","TOWN OF CENTER","RGWCD SD1","10/31/2019","10/31/2025","3","20","SAGUACHE","","","","SW","SE","32","41.0 N","8.0 E","N","","","","","401223.0","4178760.0","37.750823","-106.121266","04/25/2019 08:04","https://dwr.state.co.us/Tools/Structures/2010888", +"2010903","W1529 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1529","14309-R","GP13-2378-8","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","30","40.0 N","7.0 E","N","","","","","388969.0","4171375.0","37.682870","-106.259209","08/05/2015 09:54","https://dwr.state.co.us/Tools/Structures/2010903", +"2010904","W1530 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1530","9414-F","14-09079-8","2785 COUNTY ROAD 111 NORTH LLC (HODGE, ROBERT C.)","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NW","NE","23","39.0 N","10.0 E","N","","","","","425569.0","4163455.0","37.615193","-105.843374","08/20/2015 09:06","https://dwr.state.co.us/Tools/Structures/2010904", +"2010906","W1531 WELL NO 02","FIELD #34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1531","15881-R","14-08152","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","2","39.0 N","10.0 E","N","","","","","425363.0","4168404.0","37.659779","-105.846213","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010906", +"2010919","W1538 WELL NO 01","FIELD 10 - WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1538","15137-F-R","07-8-1562","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","35","40.0 N","10.0 E","N","","","","","424812.0","4169054.0","37.665592","-105.852527","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010919", +"2010929","W1545 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0008, W1545","14399-R, 14399-R-R, 89651-F","11060484/11060675","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS LLC (HARVEY, CHRISTY L. & DANIEL D.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","30","39.0 N","9.0 E","N","","","","","408274.0","4161361.0","37.594759","-106.039051","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010929", +"2010939","W1550 WELL NO. 4","PHILLIPS CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1550","11266-R","12061228/12061356","NICKEL, ROYCE; PHILLIPS, VICKY M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","1","40.0 N","7.0 E","N","","","","","397207.0","4177711.0","37.740928","-106.166696","03/25/2009 14:24","https://dwr.state.co.us/Tools/Structures/2010939", +"2010940","W1551 WELL NO 01-4","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1551","","21-04359-08","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","2","40.0 N","10.0 E","N","","","","","424706.0","4177995.0","37.746163","-105.854653","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010940", +"2010970","W1575 WELL NO 05","MAYFIELD PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1575","20942-S","05060765/01201341","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","17","40.0 N","6.0 E","N","","","","","380937.0","4173871.0","37.704354","-106.350686","07/23/2021 15:25","https://dwr.state.co.us/Tools/Structures/2010970", +"2010971","W1575 WELL NO 06","DIESEL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1575","20942-R","06-8-3804","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","20","40.0 N","6.0 E","N","","","","","380930.0","4173153.0","37.697883","-106.350648","07/23/2021 15:26","https://dwr.state.co.us/Tools/Structures/2010971", +"2010974","W1577 WELL NO 02","H&H #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0006, W1577","505-R","12061256/12061322","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); SJ FARMS TRUST (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","10","39.0 N","7.0 E","N","","","","","394602.0","4166555.0","37.640100","-106.194642","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010974", +"2010985","W1584 WELL NO 01","PIERCE/7N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1584","14310-R","04128389/12061301","DICKEY, GARY & BRIGITTE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","25","40.0 N","6.0 E","N","","","","","388153.0","4171157.0","37.680807","-106.268428","12/30/2008 16:05","https://dwr.state.co.us/Tools/Structures/2010985", +"2011003","W1593 WELL NO 02","#3 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1593","300-R, 300-R-R","03061810/03061835","GRANT, BETTY K.; RIO WEST FARMS, LLC (NEELY, TYLER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","40.0 N","6.0 E","N","","","","","387331.0","4170098.0","37.671163","-106.277584","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011003", +"2011004","W1594 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1594","1690-R","06-8-4825","KEELING, ROBERT & RODNEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","14","40.0 N","6.0 E","N","","","","","385757.0","4173875.0","37.705004","-106.296020","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011004", +"2011005","W1595 WELL NO 01","SANDERSON, SANDERSON QUARTER WELL, SOUTH SANDERSON STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W1595","11467-R, 87439-F","8363518","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","21","40.0 N","8.0 E","N","","","","","402755.0","4172231.0","37.692150","-106.103005","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011005", +"2011006","W1595 WELL NO 02","SANDERSON QUARTER WELL, SPRAYER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W1595","11468-R","12062527/12062755, 17-14232","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","21","40.0 N","8.0 E","N","","","","","402759.0","4172332.0","37.693061","-106.102974","08/07/2015 08:50","https://dwr.state.co.us/Tools/Structures/2011006", +"2011007","W1596 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1596","11411-R","05060758/05060798","DAMAZIO, AL; PUNTENNEY, CAROLINE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","17","40.0 N","6.0 E","N","","","","","380942.0","4173973.0","37.705274","-106.350646","06/11/2015 13:40","https://dwr.state.co.us/Tools/Structures/2011007", +"2011008","W1596 WELL NO 02","LEROY PACHECO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1596","474-R","14-09418-8","RUE, BRIAN AND ANDREA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","17","40.0 N","6.0 E","N","","","","","381728.0","4173879.0","37.704528","-106.341716","08/06/2020 17:15","https://dwr.state.co.us/Tools/Structures/2011008", +"2011012","W1597 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1597","58390-F","06-6-1778","DONNELLY, HAROLD E & PHYLLIS K; DONNELLY, KELLY J.; MCCOMAS, JEREMY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NW","8","39.0 N","7.0 E","N","","","","","391317.0","4167328.0","37.646683","-106.231983","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011012", +"2011020","W1607 WELL NO 01","F SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","13366-F","09061296/09061386","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","10","40.0 N","10.0 E","N","","","","","423092.0","4176113.0","37.729068","-105.872772","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011020", +"2011021","W1607 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","13377-F","09061319/09061410","CHILES, TERRY; CHILES, WILLIAM","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","10","40.0 N","10.0 E","N","","","","","423091.0","4176704.0","37.734394","-105.872846","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011021", +"2011125","W1656 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1656","7247-R","09060233/09060269","SCHMIDT, BEN; SCHMIDT, LAVERNE D.; SKEFF ENTERPRISES (SKEFF, KELLEY)","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","27","41.0 N","7.0 E","N","","","","","394850.0","4181016.0","37.770442","-106.193921","08/05/2015 08:38","https://dwr.state.co.us/Tools/Structures/2011125", +"2011129","W1661 WELL NO 01","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0016, W1661","15962-R","06-8-3308","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2008","10/31/2025","3","20","ALAMOSA","","","","SW","NW","9","40.0 N","10.0 E","N","","","","","421505.0","4175954.0","37.727500","-105.890763","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011129", +"2011131","W1664 WELL NO 01","NORTH QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1664","16123-F-R","06123271/12060187-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","7","39.0 N","10.0 E","N","","","","","418489.0","4166721.0","37.644027","-105.923951","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011131", +"2011133","W1664 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3012, W1664","89851-F","12062598/12062694-101084, 25-02175-06, DUMMY","COOLEY FARMS, INC.","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","2","39.0 N","10.0 E","N","","","","","424605.0","4167169.0","37.648587","-105.854679","11/21/2024 12:05","https://dwr.state.co.us/Tools/Structures/2011133", +"2011137","W1665 WELL NO 01","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW3012, W1665","7274-R, 35984-MH, 7274-R-R, 89850-F","12062598/12062694-101084, 25-02175-06, DUMMY","COOLEY FARMS, INC.; COOLEY, KIMOTHY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","2","39.0 N","10.0 E","N","","","","","424629.0","4167219.0","37.649040","-105.854412","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011137", +"2011156","W1681 WELL NO 01","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","10773-R, 10773-R-R","24-02957, 60603316295","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","14","40.0 N","9.0 E","N","","","","","414995.0","4174661.0","37.715266","-105.964477","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011156", +"2011157","W1681 WELL NO 02","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","10774-R","24-02957, 60603316295","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","14","40.0 N","9.0 E","N","","","","","414988.0","4174554.0","37.714301","-105.964544","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011157", +"2011158","W1681 WELL NO 03","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0009, W1681","10775-R, 75829-F","10060721/10061052","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","11","40.0 N","9.0 E","N","","","","","415783.0","4175429.0","37.722260","-105.955626","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011158", +"2011159","W1681 WELL NO 04","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","10776-R, 10776-R-R","21-06191","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","14","40.0 N","9.0 E","N","","","","","415800.0","4174769.0","37.716314","-105.955357","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011159", +"2011160","W1681 WELL NO 06","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","15412-F, 15412-F-R","21-06191","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","14","40.0 N","9.0 E","N","","","","","416167.0","4174766.0","37.716321","-105.951193","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011160", +"2011161","W1681 WELL NO 07","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","15781-F","24-02957, 60603316295","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","14","40.0 N","9.0 E","N","","","","","415385.0","4174764.0","37.716231","-105.960065","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011161", +"2011162","W1681 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0009, W1681","15782-F, 75830-F","10060721/10061052","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","11","40.0 N","9.0 E","N","","","","","416169.0","4175582.0","37.723675","-105.951265","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011162", +"2011163","W1681 WELL NO 10","FIELD #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1681","19432-F, 19432-F-R","20-03007","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","15","40.0 N","9.0 E","N","","","","","413728.0","4173985.0","37.709056","-105.978770","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011163", +"2011180","W1688 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1688","47875-F, 89865-F","18-04530-04","EASTMAN, CONNIE; ELOQUENT ENTERPRISES LLC","RGWCD SD1","10/31/2018","10/31/2025","3","20","ALAMOSA","","","","SW","SW","26","39.0 N","10.0 E","N","","","","","424282.0","4160916.0","37.592205","-105.857692","05/24/2022 08:38","https://dwr.state.co.us/Tools/Structures/2011180", +"2011200","W1705 WELL NO 04","WEST WILCOX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0005, W1705","3950-F","01250106/01250074","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","11","39.0 N","8.0 E","N","","","","","405118.0","4165876.0","37.635128","-106.075381","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011200", +"2011201","W1705 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0005, W1705","6053-R","212101350","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","11","39.0 N","8.0 E","N","150","W","450","S","405142.8","4165751.1","37.634004","-106.075082","02/06/2026 13:02","https://dwr.state.co.us/Tools/Structures/2011201", +"2011220","W1710 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1710","14984-F","12061287/12061320","LOCK, ALFRED H.; NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","15","40.0 N","9.0 E","N","","","","","414181.0","4174768.0","37.716155","-105.973724","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011220", +"2011299","W1767 WELL NO 02","NORTH PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1767","12234-F, 20663-F","10060681/10061087","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","18","40.0 N","11.0 E","N","","","","","428234.0","4174796.0","37.717616","-105.814296","02/07/2011 14:29","https://dwr.state.co.us/Tools/Structures/2011299", +"2011325","W1786 WELL NO 01","#0 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1786","11268-F","GP09-1393-6 HALF PIV, GP10-1539-6 FULL PIV","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","15","39.0 N","10.0 E","N","","","","","422903.0","4165408.0","37.632575","-105.873784","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011325", +"2011326","W1786 WELL NO 02","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1786","11269-F","12212648/06200661","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NE","NW","15","39.0 N","10.0 E","N","","","","","423628.0","4165307.0","37.631725","-105.865558","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011326", +"2011331","W1793 WELL NO 01","FIELD 2 S NW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1793","10660-R","05061445/05061487","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","7","39.0 N","9.0 E","N","","","","","409514.0","4167037.0","37.646034","-106.025709","12/05/2008 15:35","https://dwr.state.co.us/Tools/Structures/2011331", +"2011333","W1793 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1793","10664-R-R","04060167/04060136","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NW","8","39.0 N","9.0 E","N","","","","","409999.0","4166739.0","37.643396","-106.020175","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011333", +"2011336","W1793 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1793","20631-F, 52658-","8929721","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","SW","NW","8","39.0 N","9.0 E","N","","","","","409950.0","4166360.0","37.639976","-106.020684","08/06/2024 15:56","https://dwr.state.co.us/Tools/Structures/2011336", +"2011386","W1808 WELL NO. 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1808","57536-, 33437-F","5526602","MENDEZ, JACOB; STOOPS, PATRICIA M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","4","40.0 N","10.0 E","N","","","","","422388.0","4177855.0","37.744708","-105.880947","01/11/2024 09:00","https://dwr.state.co.us/Tools/Structures/2011386", +"2011410","W1822 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1822","11394-F","12062524/12062763","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","28","40.0 N","8.0 E","N","","","","","402742.0","4171319.0","37.683930","-106.103031","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011410", +"2011411","W1822 WELL NO 04","SOUTH SELTERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1822","14214-R","12062534/12062741","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","27","40.0 N","8.0 E","N","","","","","403564.0","4171307.0","37.683909","-106.093709","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011411", +"2011412","W1823 WELL NO 01","RAYS QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1823","13559-R","05062234/05062215","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","6","39.0 N","8.0 E","N","","","","","400277.0","4168131.0","37.654936","-106.130546","01/27/2004 09:05","https://dwr.state.co.us/Tools/Structures/2011412", +"2011422","W1829 WELL NO 01","LEWIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1829","13023-R","12061243/12061339","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2012","10/31/2025","3","20","SAGUACHE","","","","SE","SW","32","41.0 N","7.0 E","N","","","","","391484.0","4178609.0","37.748359","-106.231772","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011422", +"2011425","W1830 WELL NO 02","GJELLUM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1830","10790-R","10063574/10063696-100515, 10063624/10063635-100527","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","4","39.0 N","7.0 E","N","","","","","392975.0","4168157.0","37.654348","-106.213315","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011425", +"2011426","W1830 WELL NO 03","FIELD #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1830","2960-F","11061535/11061576, 12061227/12061321","HART, JAMES N. & MARIA L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","4","39.0 N","7.0 E","N","","","","","392989.0","4168395.0","37.656494","-106.213191","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011426", +"2011455","W1833 WELL NO 01","GWYNNE - FLOOD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","24CW3010, W1833","6563-R, 90653-F","04061997/04062009, 100921/12061335","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","13","40.0 N","8.0 E","N","","","","","406869.0","4174564.0","37.713602","-106.056649","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011455", +"2011458","W1834 WELL NO 01","NEVITT 36","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1834","13221-R","01062041/12230536","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","35","41.0 N","8.0 E","N","","","","","406080.0","4179390.0","37.757012","-106.066222","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011458", +"2011459","W1834 WELL NO 02","NEVITT 36-CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1834","13222-R","01062041/12230536, 042015003631","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","35","41.0 N","8.0 E","N","","","","","406078.0","4179445.0","37.757507","-106.066252","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011459", +"2011569","21CW0005 WELL NO. 5R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0005","242335-","212304796, 212304797","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","39.0 N","8.0 E","N","","","","","405790.0","4165675.0","37.633385","-106.067740","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2011569", +"2011570","21CW0016 WELL NO. 1-S","COOLEY 21, REPLACES 2011339","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0016","80266-F-R","21-06229-06","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2022","10/31/2025","3","20","ALAMOSA","","","","NE","SW","9","40.0 N","10.0 E","N","","","","","421878.0","4175937.0","37.727379","-105.886529","09/01/2023 21:10","https://dwr.state.co.us/Tools/Structures/2011570", +"2011580","W1896 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1896","14071-R, 14071-R-R, 14071-R-R","12062589/12062702-101086","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","40.0 N","10.0 E","N","","","","","425807.0","4170778.0","37.681211","-105.841421","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011580", +"2011581","W1896 WELL NO 02","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1896","14072-R, 14072-R-R","12062589/12062702-101086","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","SE","26","40.0 N","10.0 E","N","","","","","425900.0","4170997.0","37.683192","-105.840389","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011581", +"2011588","W1903 WELL NO 02","FIELD #21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1903","15605-F","18-11221, 21-00545","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","1","39.0 N","9.0 E","N","","","","","417693.0","4168297.0","37.658159","-105.933150","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011588", +"2011589","W1903 WELL NO 05","NE HI-LAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1903","10645-R","01062046","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","2","39.0 N","8.0 E","N","","","","","405144.0","4168446.0","37.658291","-106.075420","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011589", +"2011597","W1903 WELL NO 14","NORTH HILAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W1903","4111-F, 87443-F","212061087","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","2","39.0 N","8.0 E","N","","","","","405144.0","4168275.0","37.656750","-106.075398","12/09/2022 09:06","https://dwr.state.co.us/Tools/Structures/2011597", +"2011598","W1903 WELL NO 15","NEHI-LAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1903","15549-F","01062046","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","2","39.0 N","8.0 E","N","","","","","405541.0","4168380.0","37.657737","-106.070912","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011598", +"2011606","W1906 WELL NO 03","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","15CW3018, 17CW3010, W1906","5635-F","19-05719, 22-02259-03","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","24","40.0 N","9.0 E","N","","","","","416577.0","4172529.0","37.696198","-105.946286","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011606", +"2011608","W1906 WELL NO 05","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1906","1431-R","05063021/11061585","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","30","40.0 N","10.0 E","N","","","","","418195.0","4171454.0","37.686656","-105.927814","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011608", +"2011609","W1906 WELL NO 06","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1906","1430-R, 1430-R-R","05063021/11061585","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","30","40.0 N","10.0 E","N","","","","","418227.0","4171601.0","37.687983","-105.927468","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011609", +"2011621","W1907 WELL NO 08","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1907","15510-F","04060173/07202086","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","32","41.0 N","9.0 E","N","","","","","410129.0","4178436.0","37.748822","-106.020146","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011621", +"2011634","W1908 WELL NO 01","MULLINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0005, W1908","320-R, 320-R-R","11060512/11060669","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","31","39.0 N","9.0 E","N","","","","","408910.0","4160370.0","37.585891","-106.031724","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011634", +"2011640","W1909 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1909","4831-F","11060541/06200664","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","36","41.0 N","8.0 E","N","","","","","406907.0","4178613.0","37.750094","-106.056736","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011640", +"2011677","W1943 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1943","14316-R","05060773/022019002165","WAGAR, JOSH; WAGAR, JOSHUA L. & SAMANTHA L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SE","5","40.0 N","9.0 E","N","","","","","411356.0","4177199.0","37.737794","-106.006069","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011677", +"2011708","W1964 WELL NO 16","BELOW 8 ARTESIAN 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1964","5890-F","07-10-1056","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","26","41.0 N","9.0 E","N","","","","","415055.0","4180019.0","37.763558","-105.964423","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011708", +"2011709","W1964 WELL NO 17","#10 POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1964","11637-R","232702191, GP11-4305-12","VAN EDMONDS LLC (BIGELOW, JAN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","25","41.0 N","9.0 E","N","","","","","416695.0","4180009.0","37.763619","-105.945804","09/17/2007 14:51","https://dwr.state.co.us/Tools/Structures/2011709", +"2011713","W1965 WELL NO 02","#7 - RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1965","3376-F, 86129-F","12062622/12062709","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","33","41.0 N","9.0 E","N","","","","","411772.0","4178439.0","37.749009","-106.001499","12/05/2007 10:11","https://dwr.state.co.us/Tools/Structures/2011713", +"2011719","W1965 WELL NO 09","KULP HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1965","48836-F, 48836-F-R","60454861","KULP, ED","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","35","41.0 N","9.0 E","N","","","","","415712.0","4178439.0","37.749380","-105.956781","08/06/2020 17:18","https://dwr.state.co.us/Tools/Structures/2011719", +"2011725","W1968 WELL NO 01","LAST YEAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1968","5682-F","10061984/10062011","MONTAGUE, CHARLES & KATIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NW","10","39.0 N","10.0 E","N","","","","","423355.0","4167060.0","37.647501","-105.868836","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011725", +"2011742","W1981 WELL NO 01","GUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1981","3627-F, 79239-F","012018004181","CLAYTON, RILEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","13","39.0 N","10.0 E","N","","","","","426098.0","4165325.0","37.632089","-105.837569","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011742", +"2011797","W2012 WELL NO 12","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2012","5121-F","09062691/10060165","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","3","40.0 N","8.0 E","N","","","","","404874.0","4178024.0","37.744577","-106.079732","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011797", +"2011798","W2012 WELL NO 13","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2012","12405-F","09060711/09060732","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","2","40.0 N","8.0 E","N","","","","","405689.0","4178014.0","37.744572","-106.070482","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011798", +"2011810","W2013 WELL NO 01","FIELD 4N SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2013","1455-R","","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2019","3","20","RIO GRANDE","","","SW","SW","NW","24","40.0 N","8.0 E","N","","","","","406832.0","4172821.0","37.697891","-106.056845","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011810", +"2011818","W2013 WELL NO 09","FIELD 4N WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2013","4787-F","06200674/062019000987","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","24","40.0 N","8.0 E","N","","","","","406834.0","4173044.0","37.699900","-106.056851","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011818", +"2011820","W2013 WELL NO 11","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2013","15934-F","09062689/10060162","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","40.0 N","8.0 E","N","","","","","406497.0","4178007.0","37.744591","-106.061311","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011820", +"2011878","W2058 WELL NO 03","NORTH RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2058","9503-F, 52092-F, 9503-F-R","09062709/10242125","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","8","40.0 N","7.0 E","N","","","","","390649.0","4175629.0","37.721406","-106.240800","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011878", +"2011896","W2065A WELL NO 02","#22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, W2065","14078-R, 14078-R-R","15-04672-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NE","SW","8","39.0 N","9.0 E","N","","","","","410745.0","4165957.0","37.636422","-106.011625","10/31/2022 12:32","https://dwr.state.co.us/Tools/Structures/2011896", +"2011897","W2065A WELL NO 03","FIELD 4S SUPPL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2065","14079-R","052018002645","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","7","39.0 N","9.0 E","N","","","","","409933.0","4166003.0","37.636757","-106.020833","10/31/2022 12:33","https://dwr.state.co.us/Tools/Structures/2011897", +"2011913","W2081 WELL NO 01","CLARKE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2081","11002-R-R","06-10-1458-CLARKE OD, 18-07333-08","CLARK, GRANT W.; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","14","39.0 N","7.0 E","N","","","","","396177.0","4165710.0","37.632665","-106.176674","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011913", +"2011923","W2093 WELL NO 01","23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2093","887-R, 887-R-R","10242148/062017001246","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","29","41.0 N","10.0 E","N","","","","","419879.0","4180036.0","37.764147","-105.909662","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011923", +"2011925","W2093 WELL NO 03","23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2093","885-R","10242148/062017001246","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","29","41.0 N","10.0 E","N","","","","","419881.0","4180330.0","37.766797","-105.909672","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011925", +"2011926","W2093 WELL NO 04","9 MORTENSON CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2093","888-R-R, 87970-F","10062710/10062877, 212161383","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","29","41.0 N","10.0 E","N","","","","","420684.0","4180839.0","37.771454","-105.900612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011926", +"2011944","W2112 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2112","10251-R","09060713/09060729","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SE","21","39.0 N","9.0 E","N","","","","","412714.0","4162529.0","37.605717","-105.988902","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011944", +"2011945","W2112 WELL NO 02","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2112","5460-F","09060713/09060729","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","21","39.0 N","9.0 E","N","","","","","412716.0","4162680.0","37.607078","-105.988898","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011945", +"2011981","W2135 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0024, 24CW0005, W2135","14085-R, 86836-F","22013414","BILLY & PAULINE BOND LIVING TRUST; BOND, RONALD W.","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","7","39.0 N","8.0 E","N","","","","","399479.0","4167265.0","37.647045","-106.139472","08/14/2024 14:57","https://dwr.state.co.us/Tools/Structures/2011981", +"2011983","W2135 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2135","14201-R","10061925/10062023","METZ, KENNETH G. & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","7","39.0 N","8.0 E","N","","","","","398653.0","4167109.0","37.645548","-106.148812","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011983", +"2012011","W2167 WELL NO 01","HOOPER PARK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2167","77265-F","8928748","HOOPER, TOWN OF","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","4","40.0 N","10.0 E","N","","","","","422727.0","4178103.0","37.746971","-105.877126","08/06/2020 17:18","https://dwr.state.co.us/Tools/Structures/2012011", +"2012026","W2174 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2174","","06-11178-4","NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","6","39.0 N","11.0 E","N","","","","","428711.0","4168560.0","37.661451","-105.808274","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012026", +"2012030","W2179 WELL NO 02","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2179","15012-R, 86130-F","11061529/12230538","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","22","40.0 N","10.0 E","N","","","","","423833.0","4173558.0","37.706103","-105.864097","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012030", +"2012031","W2179 WELL NO 03","COLORADO GATORS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2179, W3946","3918-F, 90308-F","07-10-1020","COLORADO GATORS; YOUNG, ERWIN & LYNNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","22","40.0 N","10.0 E","N","","","","","423073.0","4173557.0","37.706031","-105.872718","08/06/2020 17:19","https://dwr.state.co.us/Tools/Structures/2012031", +"2012032","W2179 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2179","11505-R-R","082017002190/052018000690","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","21","40.0 N","10.0 E","N","","","","","422305.0","4172650.0","37.697792","-105.881333","08/09/2019 09:11","https://dwr.state.co.us/Tools/Structures/2012032", +"2012033","W2179 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2179","15013-R","11061529/12230538","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","22","40.0 N","10.0 E","N","","","","","423825.0","4173140.0","37.702335","-105.864144","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012033", +"2012045","W2180 WELL NO 01","#2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2180","11252-R, 11252-R-R","04060835/04060871","RIO WEST FARMS, LLC (NEELY, TYLER); TRIMBLE, CURTIS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","34","40.0 N","7.0 E","N","","","","","394209.0","4170092.0","37.671928","-106.199609","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012045", +"2012100","W2245 WELL NO 02","REED 1 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2245","","09061935/09062006","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","7","40.0 N","8.0 E","N","","","","","399555.0","4175396.0","37.720327","-106.139731","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012100", +"2012103","W2245 WELL NO 05","REED 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2245","","04-8-3059","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","17","40.0 N","8.0 E","N","","","","","400367.0","4174807.0","37.715108","-106.130439","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012103", +"2012143","W2268 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2268","10407-R","21-07179-06","DICKEY, GARY & BRIGITTE","RGWCD SD1","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","20","40.0 N","7.0 E","N","","","","","391443.0","4172761.0","37.695656","-106.231364","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012143", +"2012155","W2278 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2278","2918-F","11060527/11060627","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","40.0 N","8.0 E","N","","","","","404455.0","4177250.0","37.737559","-106.084386","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012155", +"2012157","W2278 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2278","5511-F","11060649/11060561","CONSAUL, SCOTT","RGWCD SD1","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","2","40.0 N","8.0 E","N","","","","","405278.0","4177212.0","37.737302","-106.075042","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012157", +"2012163","W2280 WELL NO 01","8 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2280","11676-F","01061410/01061439","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","30","39.0 N","9.0 E","N","","","","","408294.0","4162174.0","37.602088","-106.038926","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012163", +"2012166","W2280 WELL NO 06","8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2280","11237-F-R","01061410/01061439","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","30","39.0 N","9.0 E","N","","","","","408684.0","4161914.0","37.599783","-106.034476","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012166", +"2012184","W2289 WELL NO 07","CIRCLE 8 CONFINED (CORNER)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2289","10433-F","03063659/03063684-100922","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","7","40.0 N","9.0 E","N","","","","","409301.0","4175424.0","37.721596","-106.029167","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012184", +"2012187","W2296 WELL NO 02","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2296","12629-R","04061979/04062025","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","28","40.0 N","7.0 E","N","","","","","392613.0","4170944.0","37.679421","-106.217828","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012187", +"2012188","W2296 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2296","12628-R","","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2016","3","20","RIO GRANDE","","","NW","NW","SW","28","40.0 N","7.0 E","N","","","","","392230.0","4171234.0","37.681989","-106.222213","02/23/2026 14:38","https://dwr.state.co.us/Tools/Structures/2012188", +"2012189","W2296 WELL NO 05","CENTER #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2296","12631-R-R","13-14409-8","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","28","40.0 N","7.0 E","N","","","","","393420.0","4170928.0","37.679370","-106.208676","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012189", +"2012223","W2317 WELL NO 04R","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2317","4871-F","062013000086, 12061155/12061448","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","28","40.0 N","9.0 E","N","","","","","412087.0","4171572.0","37.687154","-105.997094","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012223", +"2012226","W2328 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2328","11916-R","03061817/03061848","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","NW","27","41.0 N","8.0 E","N","","","","","403641.0","4181126.0","37.772402","-106.094137","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012226", +"2012228","W2328 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2328","13753-F","03061797/03061830","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","27","41.0 N","8.0 E","N","","","","","404454.0","4181060.0","37.771893","-106.084898","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012228", +"2012229","W2328 WELL NO 05","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2328","5235-F-R","03061791/03061839","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","26","41.0 N","8.0 E","N","","","","","405268.0","4180897.0","37.770509","-106.075636","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012229", +"2012249","W2343 WELL NO 01","43 N. OF SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2343","11489-F","11061403/05083201","BURRIS, JAKE; ERIC L ELLITHORPE IRREVOCALE TRUST NO 2 (ELLITHORPE, JEDEDIAN V.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","5","40.0 N","8.0 E","N","","","","","401215.0","4177777.0","37.741964","-106.121223","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012249", +"2012250","W2343 WELL NO 02","43 SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2343","10327-R-R","11061403/05083201","BURRIS, JAKE; ERIC L ELLITHORPE IRREVOCALE TRUST NO 2 (ELLITHORPE, JEDEDIAN V.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","5","40.0 N","8.0 E","N","","","","","401217.0","4177675.0","37.741045","-106.121186","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012250", +"2012267","W2350 WELL NO 03","MIDDLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2350","15865-R, 15865-R-R","15-06292","CSU - SLV RESEARCH CENTER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","18","40.0 N","8.0 E","N","","","","","398746.0","4174055.0","37.708153","-106.148723","08/20/2015 09:07","https://dwr.state.co.us/Tools/Structures/2012267", +"2012290","W2360 WELL NO 05","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2360","1433-R","05061467/05061475","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NE","30","41.0 N","8.0 E","N","","","","","399634.0","4181009.0","37.770917","-106.139611","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012290", +"2012291","W2361 WELL NO 01","MOCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0057, W2361","21-R","20-00151-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2015","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","31","41.0 N","8.0 E","N","","","","","398813.0","4179333.0","37.755723","-106.148697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012291", +"2012293","W2361 WELL NO 03","#1 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","2054-F","05061451/05061471","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","30","41.0 N","8.0 E","N","","","","","398831.0","4180119.0","37.762808","-106.148603","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012293", +"2012294","W2361 WELL NO 04","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","15408-F","05061451/05061471","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SW","30","41.0 N","8.0 E","N","","","","","399226.0","4180499.0","37.766276","-106.144172","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012294", +"2012295","W2361 WELL NO 05","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","6535-F","12-3442-8","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","30","41.0 N","8.0 E","N","","","","","398857.0","4180912.0","37.769957","-106.148418","04/03/2000 00:00","https://dwr.state.co.us/Tools/Structures/2012295", +"2012296","W2361 WELL NO 13","#2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","15407-F","05061449/05061477","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","30","41.0 N","8.0 E","N","","","","","400014.0","4180503.0","37.766399","-106.135227","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012296", +"2012297","W2361 WELL NO 14","#2 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","1392-R","05061449/05061477","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","30","41.0 N","8.0 E","N","","","","","399608.0","4180116.0","37.762867","-106.139782","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012297", +"2012298","W2361 WELL NO 15","3 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","1331-R","05061461/05061478","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","29","41.0 N","8.0 E","N","","","","","400456.0","4180109.0","37.762896","-106.130156","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012298", +"2012299","W2361 WELL NO 18","GRANDPA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2361","11487-F, 11487-F-R","012017002841/09212239","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","3","40.0 N","7.0 E","N","","","","","393960.0","4177747.0","37.740881","-106.203547","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012299", +"2012300","W2361 WELL NO 19","GRANDPA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2361","14474-F","03063676/03063650","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","3","40.0 N","7.0 E","N","","","","","394299.0","4178136.0","37.744426","-106.199757","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012300", +"2012348","W2423 WELL NO 01","GUNTHER SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2423","15792-R, 15792-R-R","07060391/07060946","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","35","41.0 N","7.0 E","N","","","","","395592.0","4179394.0","37.755911","-106.185264","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012348", +"2012349","W2424 WELL NO 01","GUNTHER EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0034, W2424","10438-F, 10438-F-R","07060382/07060936","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","26","41.0 N","7.0 E","N","","","","","395994.0","4180492.0","37.765851","-106.180859","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012349", +"2012373","W2434 WELL NO 01","#82","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2434","15546-F","GP11-5441-4","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","12","39.0 N","10.0 E","N","","","","","427296.0","4166709.0","37.644658","-105.824131","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012373", +"2012374","W2434 WELL NO 02","#78","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2434","11596-F","07-10-1125","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","12","39.0 N","10.0 E","N","","","","","426203.0","4166345.0","37.641291","-105.836482","05/24/2005 10:08","https://dwr.state.co.us/Tools/Structures/2012374", +"2012375","W2434 WELL NO 03","NW WELL #80","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2434","3668-F","GP10-1574","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","1","39.0 N","10.0 E","N","","","","","426997.0","4168308.0","37.659046","-105.827680","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012375", +"2012376","W2434 WELL NO 04","#81 EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2434","6018-F","10062682/10062896","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","1","39.0 N","10.0 E","N","","","","","427052.0","4167502.0","37.651786","-105.826976","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012376", +"2012377","W2434 WELL NO 06","#79 NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3011, W2434","959-R","09061938/09062009","CURTIS FARMS, LLC (CURTIS, CLIFTON); PEAK FARMS LLC (CURTIS, CLIFTON F.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","1","39.0 N","10.0 E","N","","","","","426158.0","4167340.0","37.650254","-105.837093","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012377", +"2012378","W2434 WELL NO 07","FIELD #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2434","6019-F","06-8-3839, 222607843","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","11","39.0 N","10.0 E","N","","","","","424513.0","4166716.0","37.644497","-105.855675","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012378", +"2012380","23CW3011 WELL NO 11R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3011","89472-F","09061938/09062009","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2025","10/31/2025","3","20","ALAMOSA","","","","NE","SW","1","39.0 N","10.0 E","N","","","","","426540.0","4167525.0","37.651952","-105.832782","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012380", +"2012382","W2434 WELL NO 13","#81 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2434","958-R","06-6-2104","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SE","1","39.0 N","10.0 E","N","","","","","426941.0","4167497.0","37.651732","-105.828234","12/31/2008 11:08","https://dwr.state.co.us/Tools/Structures/2012382", +"2012408","20CW0002 WELL NO. 3-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0002, 98CW0036, W2442","16028-F","03062352","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2018","10/31/2025","3","20","SAGUACHE","","","NW","SE","SW","32","41.0 N","8.0 E","N","","","","","400852.0","4178750.0","37.750693","-106.125475","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012408", +"2012418","W2445-A WELL NO 03","SOUTH 1 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2445-A","","3789662","MONTE VISTA POTATO GROWERS COOP ASSOCIATION","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","33","40.0 N","8.0 E","N","","","","","402762.0","4168841.0","37.661601","-106.102474","05/29/2024 08:30","https://dwr.state.co.us/Tools/Structures/2012418", +"2012437","W2451 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2451","3214-F","09062775","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","39.0 N","8.0 E","N","","","","","399494.0","4168069.0","37.654292","-106.139413","02/06/2026 13:05","https://dwr.state.co.us/Tools/Structures/2012437", +"2012446","W2460 WELL NO 02","CORNER, NEVITT 37","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2460","8727-R","02060442/07242523, 052014001551","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","25","41.0 N","8.0 E","N","","","","","406984.0","4180074.0","37.763268","-106.056049","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012446", +"2012448","W2460 WELL NO 05","NEVITT 38 SINGLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2460","10764-F","02060437, 12062509/12062771","NEVVITT FARMS LLLP; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","25","41.0 N","8.0 E","N","","","","","407734.0","4180262.0","37.765039","-106.047559","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012448", +"2012449","W2460 WELL NO 07","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2460","14196-F","04060169/04060129","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","30","41.0 N","9.0 E","N","","","","","408565.0","4180238.0","37.764906","-106.038123","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012449", +"2012450","W2462 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2462","10598-F, 89121-F","08230941/12212618","NICKEL, GILBERT; NICKEL, ROYCE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","SW","31","41.0 N","7.0 E","N","","","","","389475.0","4179034.0","37.751948","-106.254636","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012450", +"2012451","W2463 WELL NO 02","#7C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2463","12751-F","04060164/04060141","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","25","41.0 N","8.0 E","N","","","","","406930.0","4181105.0","37.772554","-106.056794","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012451", +"2012461","W2470 WELL NO 01","WEST RGC","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2470","5718-F","24-02961-08","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","15","40.0 N","6.0 E","N","","","","","384249.0","4175197.0","37.716727","-106.313334","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012461", +"2012524","W2529 WELL NO 02","3 SIDE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2529","12882-R","06-8-3855, 06-8-3858","SCOTT LIVING TRUST (SCOTT, LARRY); SCOTT, LARRY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","19","40.0 N","8.0 E","N","","","","","398738.0","4173168.0","37.700159","-106.148690","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012524", +"2012530","W2536 WELL NO 02","LLL#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2536","13578-R","11060663-100574","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","27","41.0 N","9.0 E","N","","","","","413410.0","4180904.0","37.771379","-105.983202","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012530", +"2012537","W2538 WELL NO 01","#17 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2538","12845-R","06-8-3516","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","33","41.0 N","7.0 E","N","","","","","392303.0","4178610.0","37.748465","-106.222477","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012537", +"2012539","W2540 WELL NO 02","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2540","15884-F","12062584/12062698-101088","SCHMIDT, BEN; TEAYS, ALYSIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","27","41.0 N","7.0 E","N","","","","","394447.0","4181329.0","37.773216","-106.198541","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012539", +"2012540","W2541 WELL NO 01","RINKY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2541","1680-R","09061927/09062010","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","21","40.0 N","10.0 E","N","","","","","421428.0","4173060.0","37.701412","-105.891324","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012540", +"2012541","W2541 WELL NO 02","RC PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2541","1681-R-R","09061966/09062008","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","21","40.0 N","10.0 E","N","","","","","422228.0","4173013.0","37.701057","-105.882245","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012541", +"2012587","W2551 WELL NO IRR 01","8 SIDE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2551","11721-F","06-8-3865","SCOTT LIVING TRUST (JORIE S.) (SCOTT, LARRY); WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","20","40.0 N","8.0 E","N","","","","","401134.0","4172449.0","37.693941","-106.121418","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012587", +"2012588","W2551 WELL NO IRR 03","7 SIDE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2551","6999-R","06-8-3864","SCOTT LIVING TRUST (JORIE S.) (SCOTT, LARRY); WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","19","40.0 N","8.0 E","N","","","","","400333.0","4172631.0","37.695495","-106.130527","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012588", +"2012598","W2556 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2556","4264-F","22-03831-08","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","9","40.0 N","9.0 E","N","","","","","413349.0","4175346.0","37.721285","-105.983232","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012598", +"2012599","W2556 WELL NO 04","CIRCLE 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2556","14151-R, 14151-R-R","04060823/04060866","GRAHAM & MEYERS (DAVID GRAHAM & GERALD MEYERS); MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","35","41.0 N","8.0 E","N","","","","","405267.0","4179361.0","37.756667","-106.075447","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012599", +"2012600","W2556 WELL NO 05","ALPINE NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2556","14154-R","047103577","BURRIS, JAKE; EL, LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","40.0 N","8.0 E","N","","","","","402036.0","4177735.0","37.741674","-106.111900","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012600", +"2012601","W2556 WELL NO 06","ALPINE PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2556","14152-R","08062033/08061970","BURRIS, JAKE; EL, LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","40.0 N","8.0 E","N","","","","","402034.0","4177669.0","37.741079","-106.111914","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012601", +"2012602","W2556 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2556","5565-F","04060823/04060866","GRAHAM & MEYERS (DAVID GRAHAM & GERALD MEYERS); MYERS FARMS LLC; MYERS, BRANDY; MYERS, CORY","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","SW","SW","NW","35","41.0 N","8.0 E","N","","","","","405267.0","4179268.0","37.755829","-106.075435","01/10/2014 11:22","https://dwr.state.co.us/Tools/Structures/2012602", +"2012608","W2557 WELL NO 07","#7 OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2557","6541-R","","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2018","3","20","RIO GRANDE","","","NW","SW","NW","22","39.0 N","8.0 E","N","","","","","403443.0","4163471.0","37.613280","-106.094044","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012608", +"2012609","W2557 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2557","6542-R","12062548/12062735","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","22","39.0 N","8.0 E","N","","","","","403447.0","4163619.0","37.614614","-106.094018","05/27/2009 09:43","https://dwr.state.co.us/Tools/Structures/2012609", +"2012611","W2557 WELL NO 10","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2557","6544-R","12062548/12062735","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","22","39.0 N","8.0 E","N","","","","","403833.0","4163586.0","37.614357","-106.089641","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012611", +"2012637","W2563 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2563","6303-R-R","01062058/12212622","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","29","40.0 N","8.0 E","N","","","","","401526.0","4171614.0","37.686459","-106.116859","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012637", +"2012638","W2563 WELL NO 03","EAST SHOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2563","12191-F","01062058/12212622","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","29","40.0 N","8.0 E","N","","","","","401131.0","4171620.0","37.686470","-106.121339","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012638", +"2012640","W2565 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2565","5948-R","05060764/09212253","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","30","40.0 N","8.0 E","N","","","","","400318.0","4171396.0","37.684364","-106.130528","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012640", +"2012641","W2565 WELL NO 03","CORNER #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2565","5441-F","04061990/04062013-3675047","RICHARD F. MCNITT TRUST FBO MELINDA DIANE MARINO (MARINO, MELINDA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","30","40.0 N","8.0 E","N","","","","","399498.0","4170726.0","37.678236","-106.139734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012641", +"2012643","W2565 WELL NO 05","SHOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2565","12512-R","11060554/12212596","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","31","40.0 N","8.0 E","N","","","","","399487.0","4169810.0","37.669980","-106.139732","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012643", +"2012647","W2565 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2565","5994-R","12062493/12062791","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","SW","SW","NW","25","40.0 N","6.0 E","N","","","","","387381.0","4171586.0","37.684578","-106.277247","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012647", +"2012648","W2565 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2565","5993-R","10061954/10062038-100274","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","NW","SW","NW","25","40.0 N","6.0 E","N","","","","","387367.0","4171753.0","37.686081","-106.277432","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012648", +"2012665","W2588 WELL NO 01","AUG - HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0022, W2588","14106-R","12212663/12062649","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","8","40.0 N","8.0 E","N","","","","","401189.0","4175662.0","37.722901","-106.121230","06/18/2013 16:30","https://dwr.state.co.us/Tools/Structures/2012665", +"2012666","W2588 WELL NO 02","GRASS CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","14107-R","11060519/11060688-100592","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","8","40.0 N","8.0 E","N","","","","","401184.0","4175476.0","37.721225","-106.121262","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012666", +"2012668","W2588 WELL NO 17","B RD HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2588","10479-F","171498208","NICKEL, ROYCE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","NW","SW","29","41.0 N","7.0 E","N","","","","","391164.0","4180609.0","37.766343","-106.235703","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012668", +"2012671","W2588 WELL NO 18","SKYLINE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","4041-F, 37440-F, 37440-F-R","22-07431-10","ALDERETE, LES; SKYLINE POTATO COMPANY; SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SE","SE","NW","33","41.0 N","8.0 E","N","","","","","402634.0","4179551.0","37.758102","-106.105358","08/06/2020 17:21","https://dwr.state.co.us/Tools/Structures/2012671", +"2012672","W2588 WELL NO 20","SCOTT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","11429-R","042017003880/10062804-Pivot Riser","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","17","40.0 N","8.0 E","N","","","","","401159.0","4173745.0","37.705623","-106.121310","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012672", +"2012673","W2588 WELL NO 21","SCOTT #2 CORNER VARIANCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","11257-F","042017003880/10062804-Pivot Riser","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","17","40.0 N","8.0 E","N","","","","","401164.0","4174149.0","37.709264","-106.121308","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012673", +"2012676","W2588 WELL NO 24","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","21926-F","10062749/10062839","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","5","39.0 N","8.0 E","N","","","","","401101.0","4167790.0","37.651952","-106.121160","02/06/2026 13:07","https://dwr.state.co.us/Tools/Structures/2012676", +"2012920","W2769 WELL NO 06","HOR 1 & 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2769","11448-R, 43470-F","6987385, 6987387","MATTIVE, GRANT; PEAK ORGANIC LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","34","40.0 N","8.0 E","N","","","","","404411.0","4168849.0","37.661846","-106.083782","11/29/2023 16:58","https://dwr.state.co.us/Tools/Structures/2012920", +"2012935","20CW0006 WELL NO. 4-R-EAST","W2784 WELL NO 1 FKA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0006, W2784","54605-, 90391-F","11577361","CATALANO, DWAYNE","RGWCD SD1","10/31/2021","10/31/2025","3","20","ALAMOSA","","","","NW","SW","23","39.0 N","9.0 E","N","165","W","1665","S","414766.6","4162758.1","37.607974","-105.965673","01/17/2024 15:23","https://dwr.state.co.us/Tools/Structures/2012935", +"2013052","W2947 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2947","16081-F","02081356/05201406","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","17","39.0 N","9.0 E","N","","","","","409925.0","4164715.0","37.625149","-106.020765","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013052", +"2013164","W3131 WELL NO 15","FELMLEE E.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3131","16235-F","03063664","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","36","41.0 N","7.0 E","N","","","","","398381.0","4179699.0","37.758973","-106.153652","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013164", +"2013188","W3159 WELL NO 01","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3159","16019-F","09062732/10060135","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","40.0 N","9.0 E","N","","","","","410538.0","4177215.0","37.737858","-106.015353","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013188", +"2013249","W3205 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3205","12941-F","102013002749","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","29","41.0 N","7.0 E","N","","","","","391961.0","4180582.0","37.766194","-106.226652","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013249", +"2013252","W3213 WELL NO 01","FIELD 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3213","16182-F","13-14449","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","27","40.0 N","9.0 E","N","","","","","414529.0","4170740.0","37.679887","-105.969303","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013252", +"2013254","W3246 WELL NO 03","24 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3246","16674-F","100924/1221611","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","40.0 N","8.0 E","N","","","","","402387.0","4175642.0","37.722850","-106.107636","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013254", +"2013267","W3264 WELL NO 01","#25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3264","20137-F","12061180/12061425","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","5","39.0 N","9.0 E","N","","","","","411170.0","4167545.0","37.650774","-106.007002","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013267", +"2013306","W3289 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3289","16484-F","09061313/09061362","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","12","40.0 N","7.0 E","N","","","","","397162.0","4176405.0","37.729154","-106.167022","02/04/2013 14:46","https://dwr.state.co.us/Tools/Structures/2013306", +"2013308","W3298 WELL NO 02","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0039, W3298","17721-F","20-04463-08","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","5","40.0 N","9.0 E","N","","","","","411373.0","4177982.0","37.744852","-106.005971","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013308", +"2013311","W3303 WELL NO 01","EAST MULLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3303","16756-F, 16756-F-R","19-02620-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","10","39.0 N","8.0 E","N","","","","","404707.0","4166834.0","37.643718","-106.080163","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013311", +"2013316","W3321 WELL NO 01","TUMAC/ZIMMY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3321","16663-F, 16663-F-R","10060686/10061066","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","40.0 N","7.0 E","N","","","","","394259.0","4175768.0","37.723083","-106.199866","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013316", +"2013319","W3327 WELL NO 01","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3327","18630-F","11060526/12230532","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","20","40.0 N","10.0 E","N","","","","","419773.0","4172164.0","37.693194","-105.909997","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013319", +"2013322","W3342 WELL NO 03R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3342","1353-R-R","09062787/10060094","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","18","39.0 N","8.0 E","N","","","","","399807.0","4164462.0","37.621821","-106.135370","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013322", +"2013328","W3373 WELL NO 02","SE HI-LAND, SOUTH EAST HIGHLAND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046, W3373","10644-R-R","02060446/02060470","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","2","39.0 N","8.0 E","N","","","","","405538.0","4167633.0","37.651005","-106.070849","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013328", +"2013329","W3376 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3376","11236-R-R","10060713/10061043","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","40.0 N","7.0 E","N","","","","","397467.0","4170024.0","37.671685","-106.162663","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013329", +"2013331","W3384 WELL NO 01","FIELD #27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0008, W3384","16318-F","24-02951","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","25","40.0 N","9.0 E","N","","","","","417770.0","4171526.0","37.687266","-105.932642","03/04/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013331", +"2013332","W3389 WELL NO 01","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3389","5443-F","11061472/01201343","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","10","40.0 N","9.0 E","N","","","","","414576.0","4175579.0","37.723500","-105.969338","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013332", +"2013339","W3391 WELL NO 07R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3391","1806-R-R","14-08636","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","21","40.0 N","7.0 E","N","","","","","392644.0","4172540.0","37.693806","-106.217712","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013339", +"2013340","W3392 WELL NO 02R","5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3392","8696-R-R","06052202/06052211","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","39.0 N","8.0 E","N","","","","","403914.0","4167674.0","37.651206","-106.089261","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013340", +"2013341","W3395 WELL NO 01R","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3010, W3395","17197-F, 89517-F","12061238/12061430","BAUTISTA, DONNIE & CARLY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","NE","NE","27","41.0 N","10.0 E","N","","","","","424573.0","4181591.0","37.778560","-105.856536","08/06/2020 17:22","https://dwr.state.co.us/Tools/Structures/2013341", +"2013342","W3397 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3397","16935-F","09062693/10060166","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","40.0 N","8.0 E","N","","","","","407237.0","4173991.0","37.708475","-106.052401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013342", +"2013344","W3409 WELL NO 03R","SVF 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3409","1643-R-R","03061838/03061816","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","27","41.0 N","8.0 E","N","","","","","404836.0","4180469.0","37.766607","-106.080484","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013344", +"2013345","W3409 WELL NO 04R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3409","2146-F-R","03061791/03061839","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","26","41.0 N","8.0 E","N","","","","","405692.0","4181258.0","37.773806","-106.070869","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013345", +"2013346","W3409 WELL NO 16R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3409","19431-F-R","03061797/03061830","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","27","41.0 N","8.0 E","N","","","","","404852.0","4181269.0","37.773818","-106.080407","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013346", +"2013347","W3412 WELL NO 01","B4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3412","915-R-R","03063671/062019000995","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","5","40.0 N","8.0 E","N","","","","","400802.0","4177277.0","37.737413","-106.125841","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013347", +"2013350","W3416 WELL NO 01R","WEST HOME CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3416","13478-R, 13478-R-R, 13478-R-R","10063553/10063719","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","35","40.0 N","7.0 E","N","","","","","395470.0","4169511.0","37.666837","-106.185229","05/15/2014 08:46","https://dwr.state.co.us/Tools/Structures/2013350", +"2013351","W3416 WELL NO 03R","WEST HOME PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3416","2573-F-R, 2573-F-R","10063553/10063719","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","35","40.0 N","7.0 E","N","","","","","395841.0","4169268.0","37.664690","-106.180989","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013351", +"2013363","W3421 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3421","20434-F, 20434-F-R","032015003847","SPUD SELLER, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","9","39.0 N","8.0 E","N","","","","","402551.0","4165739.0","37.633624","-106.104452","08/06/2020 17:22","https://dwr.state.co.us/Tools/Structures/2013363", +"2013364","W3422 WELL NO 01","BR. PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3422","6413-R-R","11061432/09212241","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","24","40.0 N","8.0 E","N","","","","","408027.0","4173178.0","37.701228","-106.043337","09/24/2008 09:57","https://dwr.state.co.us/Tools/Structures/2013364", +"2013365","W3423 WELL NO 01","M6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3423","18518-F","12061254/12061347","HARRISON, TODD; HARRISON, WESLEY; MONTER, JOYCE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","22","40.0 N","7.0 E","N","","","","","394296.0","4173321.0","37.701036","-106.199091","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013365", +"2013366","W3424 WELL NO 01","14 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3424","8693-R-R","01061420/06214539","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","39.0 N","8.0 E","N","","","","","402257.0","4166066.0","37.636540","-106.107827","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013366", +"2013375","W3437 WELL NO 01R","#15 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3437","11446-R, 11446-R-R","01061402/01061431","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","SE","34","40.0 N","8.0 E","N","","","","","404733.0","4169189.0","37.664944","-106.080176","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013375", +"2013377","W3446 WELL NO 02R","45 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3446","6003-R-R","08061963/08062029","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","19","39.0 N","8.0 E","N","","","","","399775.0","4163656.0","37.614554","-106.135622","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013377", +"2013380","W3447 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3447","","9374509","HOLLAND, KEITH","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NW","NW","3","40.0 N","9.0 E","N","","","","","413762.0","4178117.0","37.746296","-105.978875","02/23/2026 15:58","https://dwr.state.co.us/Tools/Structures/2013380", +"2013381","W3448 WELL NO 01R","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3448","6185-R-R","08073059/10062008, 11060567/11060600","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","9","40.0 N","7.0 E","N","","","","","393491.0","4175748.0","37.722813","-106.208576","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013381", +"2013382","W3450 WELL NO 01A","N. SANDERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3450","16883-F","10061888/10062064","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","40.0 N","7.0 E","N","","","","","398260.0","4170054.0","37.672044","-106.153677","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013382", +"2013388","W3455 WELL NO 06R","# 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","19CW0007, W3455","13405-F-R","20-03577-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NE","33","39.0 N","9.0 E","N","","","","","412362.0","4160047.0","37.583316","-105.992593","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013388", +"2013389","W3459 WELL NO 01","25 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3459","19336-F","100770/12061417","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","9","40.0 N","8.0 E","N","","","","","402404.0","4176449.0","37.730124","-106.107552","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013389", +"2013390","W3465 WELL NO 04R","NORTH PLACE, REPLACES 2005347","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3465","6008-R-R","10060658/100135","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","31","40.0 N","9.0 E","N","","","","","408777.0","4169155.0","37.665048","-106.034327","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013390", +"2013406","W3478 WELL NO 01","SUMMIT #25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3478","22150-F, 18133-F","05081934/100730","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","1","40.0 N","8.0 E","N","","","","","406919.0","4177891.0","37.743589","-106.056507","01/27/2004 16:36","https://dwr.state.co.us/Tools/Structures/2013406", +"2013410","W3488 WELL NO 02R","HALE WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3488","6691-R","11060527/11060627","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","3","40.0 N","8.0 E","N","","","","","404846.0","4177228.0","37.737401","-106.079946","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013410", +"2013411","W3488 WELL NO 05R","HALE EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3488","6540-R-R","11060649/11060561","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","2","40.0 N","8.0 E","N","","","","","405689.0","4177221.0","37.737425","-106.070379","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013411", +"2013415","W3492 WELL NO 01","K3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3492","18250-F","05060748/05060273","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","22","40.0 N","8.0 E","N","","","","","404794.0","4173210.0","37.701187","-106.080010","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013415", +"2013416","W3492 WELL NO 02","K2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3492","18251-F","15-02704-8","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","22","40.0 N","8.0 E","N","","","","","404780.0","4172410.0","37.693976","-106.080064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013416", +"2013418","W3496 WELL NO 01","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3496","21121-F, 18248-F","05061467/05061475","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","30","41.0 N","8.0 E","N","","","","","400031.0","4181299.0","37.773574","-106.135144","01/26/2004 10:26","https://dwr.state.co.us/Tools/Structures/2013418", +"2013432","W3512 WELL NO 02","TEDD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3512","17996-F","14-08632-8","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","16","40.0 N","7.0 E","N","","","","","393490.0","4174900.0","37.715172","-106.208463","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013432", +"2013440","W3531 WELL NO 01","#4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3531","8565-R-R","06-8-3860","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","13","39.0 N","8.0 E","N","","","","","407105.0","4165153.0","37.628815","-106.052772","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013440", +"2013441","W3532 WELL NO 05R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0001, W3532","5921-R-R","07-8-1499, 22-03797-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","10","39.0 N","8.0 E","N","","","","","404696.0","4166047.0","37.636625","-106.080185","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013441", +"2013443","W3537 WELL NO 02R","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3537","890-R-R","07242530/01250077, 23-00713","HARRISON, TODD; HARRISON, WESLEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","14","40.0 N","7.0 E","N","","","","","395909.0","4174089.0","37.708142","-106.180907","02/13/2025 15:20","https://dwr.state.co.us/Tools/Structures/2013443", +"2013444","W3538 WELL NO 01R","26 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3538","19149-F","03063653/072014000395","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","4","40.0 N","8.0 E","N","","","","","402413.0","4177252.0","37.737361","-106.107557","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013444", +"2013445","W3540 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3540","11616-R, 11616-R-R","07-8-1249","DAVIS, STEVEN & KAREN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","10","40.0 N","8.0 E","N","","","","","403653.0","4176081.0","37.726940","-106.093331","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013445", +"2013447","W3546 WELL NO 02R","RIGGENBACH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3546","10626-R","09062785/10060068","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","5","39.0 N","8.0 E","N","","","","","400697.0","4167685.0","37.650962","-106.125725","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013447", +"2013448","W3546 WELL NO 03R","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3546","20927-T","22-04598-08","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","15","39.0 N","8.0 E","N","","","","","403882.0","4165220.0","37.629087","-106.089301","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013448", +"2013449","W3546 WELL NO 10R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3546","10733-F-R","09062752/9212234","MCCOY, GLEN D. & SHARON A.; MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","17","39.0 N","8.0 E","N","","","","","401446.0","4164436.0","37.621764","-106.116797","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013449", +"2013450","W3548 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3548","20466-F, 20466-F-R","12212678/12212591","KOEHN, MARK; LOEWEN JIM & ROZELLA S REVOCABLE TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","5","40.0 N","7.0 E","N","","","","","391911.0","4178122.0","37.744021","-106.226854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013450", +"2013451","W3554 WELL NO 05","FIELD #4 - EAST ROBERTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3554","20101-F","052016002843","PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","26","40.0 N","8.0 E","N","","","","","406362.0","4170781.0","37.679458","-106.061914","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013451", +"2013457","W3566 WELL NO 03R","FIELD #57A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3566","11059-F-R","22-04513-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","34","40.0 N","10.0 E","N","","","","","423171.0","4169350.0","37.668124","-105.871162","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013457", +"2013461","W3573 WELL NO 03","M3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3573","16817-F","12061244/12061341, 14-11240-8","HARRISON, TODD; HARRISON, WESLEY; MONTER, JOYCE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","23","40.0 N","7.0 E","N","","","","","396686.0","4172492.0","37.693838","-106.171867","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013461", +"2013462","W3573 WELL NO 04","M3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3573","16816-F, 16816-F-R","12062615/12062710","DAALE, ERIC & TAMI; PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","23","40.0 N","7.0 E","N","","","","","395882.0","4172498.0","37.693801","-106.180986","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013462", +"2013464","W3576 WELL NO 01","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3576","20459-F","09062704/10060171","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","16","40.0 N","8.0 E","N","","","","","403188.0","4174828.0","37.715599","-106.098440","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013464", +"2013465","W3576 WELL NO 02","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3576","20460-F","09062695/052018002656","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","40.0 N","8.0 E","N","","","","","404798.0","4174012.0","37.708414","-106.080070","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013465", +"2013466","13CW0004 WELL NO 20R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0004, W3576","1315-R-R","09212318/06214535","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","15","40.0 N","8.0 E","N","","","","","403996.0","4174012.0","37.708331","-106.089167","09/29/2015 12:28","https://dwr.state.co.us/Tools/Structures/2013466", +"2013505","W3582 WELL NO 02R","A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3582","6061-R-R","11060564/11060615","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","3","39.0 N","7.0 E","N","","","","","394999.0","4168518.0","37.657835","-106.190426","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013505", +"2013506","W3583 WELL NO 01R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3583","5938-R-R","11061456/072017003078","MITCHELL FAMILY FARMS, LLC; MITCHELL, MARVIN; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","1","39.0 N","8.0 E","N","","","","","407151.0","4167618.0","37.651034","-106.052565","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013506", +"2013508","W3589 WELL NO 01","FIELD #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3589","18286-F, 18286-F-R","GP11-1049","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","28","40.0 N","8.0 E","N","","","","","401952.0","4171682.0","37.687117","-106.112038","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013508", +"2013510","W3591 WELL NO 01","#22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0015, W3591","20864-F","15-04672-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","8","39.0 N","9.0 E","N","","","","","411152.0","4165918.0","37.636110","-106.007008","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013510", +"2013511","W3592 WELL NO 04R","9 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3592","13549-R-R","12062552/12062736","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","16","40.0 N","8.0 E","N","","","","","402365.0","4174039.0","37.708402","-106.107671","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013511", +"2013512","W3594 WELL NO 04","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3594","20468-F","20-03586-08","CARPENTER, CODY; CARPENTER, DONALD R.; CARPENTER, KENNETH L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","24","40.0 N","8.0 E","N","","","","","408017.0","4172388.0","37.694108","-106.043351","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013512", +"2013513","W3595 WELL NO 01R","DOBEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3595","12823-R, 3344-F, 12823-R-R","05083030/04061512","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","39.0 N","8.0 E","N","","","","","405531.0","4166824.0","37.643713","-106.070824","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013513", +"2013514","W3595 WELL NO 05R","W. HODGELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3595","14200-R","10061925/10062023","METZ, KENNETH G. & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","7","39.0 N","8.0 E","N","","","","","399058.0","4166906.0","37.643764","-106.144194","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013514", +"2013517","W3602 WELL NO 04R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3602","1527-R, 1527-R-R","10060688/10061081","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","3","40.0 N","7.0 E","N","","","","","395118.0","4177364.0","37.737564","-106.190351","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013517", +"2013518","W3603 WELL NO 01","#2 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3603","20900-F","06-8-3843","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","31","40.0 N","10.0 E","N","","","","","419743.0","4169025.0","37.664902","-105.909992","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013518", +"2013522","W3630 WELL NO 02","FIELD #57","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3630","20464-F","24-04554","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SW","34","40.0 N","10.0 E","N","","","","","423206.0","4168923.0","37.664279","-105.870721","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013522", +"2013524","W3633 WELL NO 01","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3633","20381-F","07061135/07061173","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","40.0 N","10.0 E","N","","","","","418588.0","4175605.0","37.724100","-105.923821","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013524", +"2013526","W3675 WELL NO 03R","Q2 - PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3675","2926-F","09212326/052018001065","MYERS, JARED S.; THE JANET LEE MYERS TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","NW","31","41.0 N","9.0 E","N","","","","","408936.0","4179605.0","37.759238","-106.033832","01/26/2004 16:04","https://dwr.state.co.us/Tools/Structures/2013526", +"2013527","W3680 WELL NO 02R","WEST SHOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3680","5949-R-R","05060764/09212253","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","29","40.0 N","8.0 E","N","","","","","400721.0","4171629.0","37.686507","-106.125990","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013527", +"2013528","W3686 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22284-F","04060828/04060861","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","4","40.0 N","9.0 E","N","","","","","412170.0","4177202.0","37.737899","-105.996832","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013528", +"2013529","W3686 WELL NO 02","K & M 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22285-F","052013003281/12230543","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","4","40.0 N","9.0 E","N","","","","","412162.0","4177989.0","37.744991","-105.997018","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013529", +"2013530","W3686 WELL NO 03","FIELD D","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22286-F","09060221/01201338","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","40.0 N","9.0 E","N","","","","","413785.0","4177990.0","37.745154","-105.978599","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013530", +"2013531","W3686 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22287-F","04060829/04060845","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","9","40.0 N","9.0 E","N","","","","","412178.0","4176390.0","37.730582","-105.996643","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013531", +"2013532","W3686 WELL NO 05","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22288-F","05083038/06052215","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","9","40.0 N","9.0 E","N","","","","","412976.0","4176386.0","37.730622","-105.987588","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013532", +"2013533","W3686 WELL NO 06","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22289-F","05063002/05063047","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","4","40.0 N","9.0 E","N","","","","","412969.0","4177986.0","37.745041","-105.987859","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013533", +"2013534","W3686 WELL NO 07","K & M 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22290-F","05063011/05063040","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","4","40.0 N","9.0 E","N","","","","","412979.0","4177187.0","37.737841","-105.987650","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013534", +"2013535","W3686 WELL NO 08","5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0035, W3686","22291-F","09060228/09060254","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","10","40.0 N","9.0 E","N","","","","","413788.0","4176404.0","37.730861","-105.978376","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013535", +"2013536","W3686 WELL NO 09","FIELD C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3686","22292-F","02071276/09060256","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","3","40.0 N","9.0 E","N","","","","","413800.0","4177198.0","37.738018","-105.978334","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013536", +"2013537","W3687 WELL NO 01R","10 MILE HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3687","17696-F, 5918-R-R","03061802/03061826-11061632","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","11","40.0 N","7.0 E","N","","","","","395897.0","4175707.0","37.722721","-106.181274","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013537", +"2013538","W3687 WELL NO 02R","GLENN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3687","1525-R-R","09061325/09061384","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","10","40.0 N","7.0 E","N","","","","","395090.0","4176516.0","37.729919","-106.190546","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013538", +"2013539","W3688 WELL NO 10","10 N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3688","15963-F","10063614/10063643","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","11","40.0 N","7.0 E","N","","","","","396744.0","4175703.0","37.722781","-106.171665","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013539", +"2013541","W3689 WELL NO 01","PEPPER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3689","18415-F, 18415-F-R","12204463","COLORADO STATE LAND BOARD; PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","4","40.0 N","7.0 E","N","","","","","392698.0","4178152.0","37.744384","-106.217927","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013541", +"2013542","W3689 WELL NO 02","HOME - PEPPER #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3689","20097-F","11061438/11060664","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","10","40.0 N","7.0 E","N","","","","","394278.0","4176536.0","37.730006","-106.199762","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013542", +"2013543","W3689 WELL NO 02R","7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3689","7000-R-R","06-8-3864","SCOTT LIVING TRUST (JORIE S.) (SCOTT, LARRY); WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","20","40.0 N","8.0 E","N","","","","","400729.0","4172455.0","37.693952","-106.126012","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013543", +"2013544","W3689 WELL NO 02RR","D CROSS RD, REPLACES 2005393","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3689","5771-F-R","12204469","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","SE","4","40.0 N","7.0 E","N","","","","","393495.0","4177328.0","37.737052","-106.208762","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013544", +"2013547","W3693 WELL NO 01","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3693","18636-F","16-06585-6, GP06-08-3173","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","25","40.0 N","10.0 E","N","","","","","427025.0","4171090.0","37.684120","-105.827641","02/07/2011 14:35","https://dwr.state.co.us/Tools/Structures/2013547", +"2013548","W3696 WELL NO 01","FLD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3696","17437-F","12061270/12061304-100977","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","28","41.0 N","9.0 E","N","","","","","412181.0","4180440.0","37.767081","-105.997099","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013548", +"2013549","W3704 WELL NO 01R","DANNY EAST HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3704","14105-R-R","22-03831-08","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","10","40.0 N","9.0 E","N","","","","","413768.0","4175570.0","37.723343","-105.978505","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013549", +"2013550","W3706 WELL NO 01","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3706","20095-F","12062529/12062770","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","31","41.0 N","9.0 E","N","","","","","409716.0","4178804.0","37.752097","-106.024879","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013550", +"2013551","W3706 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3706","18637-F","10060741/12212588, 212652627","CENTRAL PUMP COMPANY (GEIMAN, JOE); WAVA PROPERTIES LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","31","41.0 N","9.0 E","N","","","","","409346.0","4178430.0","37.748690","-106.029031","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013551", +"2013552","W3711 WELL NO 01R","#14 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3711","894-R-R","23-09450-08","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","18","39.0 N","9.0 E","N","","","","","409515.0","4165128.0","37.628830","-106.025461","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013552", +"2013553","W3711 WELL NO 02R","#15 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3711","1299-R-R","24-00564-08","MITCHELL AG. PRODUCTION, FLP; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","17","39.0 N","9.0 E","N","","","","","410346.0","4165121.0","37.628849","-106.016044","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013553", +"2013554","W3715 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3715","21999-F","06-6-1306, 07-6-1055, GP13-4669-8","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","13","39.0 N","9.0 E","N","","","","","417536.0","4165180.0","37.630054","-105.934578","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013554", +"2013555","W3719 WELL NO 11","FIELD #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3719","22184-F, 20338-F","15-10715-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","14","40.0 N","9.0 E","N","","","","","416167.0","4173959.0","37.709048","-105.951100","01/09/2004 16:36","https://dwr.state.co.us/Tools/Structures/2013555", +"2013556","W3719 WELL NO 12","FIELD #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3719","22183-F, 20339-F","24-02969","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","14","40.0 N","9.0 E","N","","","","","415371.0","4173955.0","37.708939","-105.960129","01/09/2004 16:38","https://dwr.state.co.us/Tools/Structures/2013556", +"2013557","W3719 WELL NO 13","FIELD #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3719","22182-F, 20340-F","20-04455","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","15","40.0 N","9.0 E","N","","","","","414560.0","4173966.0","37.708962","-105.969330","01/09/2004 16:41","https://dwr.state.co.us/Tools/Structures/2013557", +"2013559","W3723 WELL NO 03","NE RES PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3723","17899-F","22-03025-08","STAHL, STANLEY; WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SE","4","39.0 N","10.0 E","N","","","","","422274.0","4167325.0","37.649799","-105.881116","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013559", +"2013561","W3727 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3727","18414-F","10061934/10062041","MATTHEWS, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","9","40.0 N","7.0 E","N","","","","","393480.0","4176523.0","37.729796","-106.208814","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013561", +"2013563","W3732 WELL NO 01","FLD6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3732","21140-F","12061293/12061313","BYRD, C. E. & LORENE M.; VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","28","41.0 N","9.0 E","N","","","","","412992.0","4181190.0","37.773917","-105.987982","01/07/2009 14:18","https://dwr.state.co.us/Tools/Structures/2013563", +"2013567","W3745 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3745","22571-F","07061118/07061158","KRUSE, MICHAEL; ROBINSON, JOLENE M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","5","40.0 N","10.0 E","N","","","","","420278.0","4177153.0","37.738200","-105.904816","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013567", +"2013568","W3748 WELL NO 09R","2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3748","13148-F-R","072014000383/06214541","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","33","40.0 N","8.0 E","N","","","","","402303.0","4169214.0","37.664914","-106.107727","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013568", +"2013569","W3750 WELL NO 01R","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3750","8610-R-R, 8610-R-R","11061514/10063651","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","15","40.0 N","7.0 E","N","","","","","394291.0","4174083.0","37.707902","-106.199258","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013569", +"2013570","W3755 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3755","21397-F","16-05208-8 -WF PIVOT, 22-07414-06","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","11","39.0 N","9.0 E","N","","","","","415231.0","4166670.0","37.643272","-105.960870","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013570", +"2013572","W3769 WELL NO 01","FIELD #56","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3769","21925-F","60603316296/10060080","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","34","40.0 N","10.0 E","N","","","","","424172.0","4169150.0","37.666405","-105.859793","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013572", +"2013573","W3774 WELL NO 02","MYERS 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3774","23236-F","11060505/11060683","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","35","41.0 N","9.0 E","N","","","","","415421.0","4179590.0","37.759726","-105.960218","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013573", +"2013574","W3778 WELL NO 01S","BIGELOW 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0004, W3778","21801-F","12061283/12061315","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","25","41.0 N","9.0 E","N","","","","","417071.0","4181365.0","37.775873","-105.941691","08/12/2008 15:57","https://dwr.state.co.us/Tools/Structures/2013574", +"2013575","W3779 WELL NO 01","BIGELOW 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3779","21802-F, 21802-F-R","12061283/12061315","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","25","41.0 N","9.0 E","N","","","","","417071.0","4181151.0","37.773945","-105.941667","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013575", +"2013576","W3781 WELL NO 05R","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3781","13749-R-R","12241047","PFANNENSTIEL, ERIC; PFANNENSTIEL, ERIC S. & D. MONIQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","13","39.0 N","7.0 E","N","","","","","398174.0","4165291.0","37.629112","-106.153987","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013576", +"2013577","W3783 WELL NO 02R","P-3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3783","13403-F","05060747/05081901","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","35","41.0 N","7.0 E","N","","","","","396763.0","4178914.0","37.751718","-106.171905","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013577", +"2013579","W3787 WELL NO 01","EAST NELSON-#7 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3787","22179-F","12212677/12204371","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","35","41.0 N","8.0 E","N","","","","","406480.0","4178836.0","37.752060","-106.061611","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013579", +"2013581","W3793 WELL NO 02A","B3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3793","21587-F, 21587-F-R","10061947/10062054","BKC, LLC, A COLORADO LIMITED LIABILITY COMPANY; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","5","40.0 N","8.0 E","N","","","","","400813.0","4178065.0","37.744516","-106.125824","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013581", +"2013582","W3795 WELL NO 02R","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3795","706-R-R","32014000114","CLEAR WATER FARMS (MINER, CRAIG); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","7","39.0 N","8.0 E","N","","","","","399859.0","4166083.0","37.636435","-106.135003","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013582", +"2013584","W3797 WELL NO 07R","16 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3797","12781-R-R","01061409/01061426","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","32","40.0 N","8.0 E","N","","","","","401518.0","4170031.0","37.672192","-106.116736","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013584", +"2013585","W3797 WELL NO 09R","18 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3797","12780-R-R","01061422/01061436","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","34","40.0 N","8.0 E","N","","","","","403940.0","4169992.0","37.672098","-106.089272","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013585", +"2013586","W3836 WELL NO 01R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0007, W3836","609-R-R","18-02943-08","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","24","40.0 N","8.0 E","N","","","","","407208.0","4172396.0","37.694099","-106.052527","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013586", +"2013587","W3838 WELL NO 08","#7E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3838","20167-F","100892/12061374","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","30","40.0 N","9.0 E","N","","","","","409627.0","4170762.0","37.679615","-106.024890","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013587", +"2013588","W3838AWELL NO 02R","7W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0001, W3838","6096-R-R","100890/12061378","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","30","40.0 N","9.0 E","N","","","","","408789.0","4170752.0","37.679442","-106.034391","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013588", +"2013594","W3843 WELL NO 04R","SELTERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3843","7236-R-R","10063562/10063723","MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","19","40.0 N","8.0 E","N","","","","","399938.0","4173255.0","37.701075","-106.135092","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013594", +"2013597","W3851 WELL NO 01R","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3851","1592-R-R, 1592-R-R","10061968/10062004-100302","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","26","40.0 N","7.0 E","N","","","","","396683.0","4171661.0","37.686349","-106.171783","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013597", +"2013606","W3879 WELL NO 02","GUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3879","20769-F, 20769-F-R","07-6-1083","CLAYTON, RILEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","13","39.0 N","10.0 E","N","","","","","426156.0","4165369.0","37.632491","-105.836916","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013606", +"2013607","W3879 WELL NO 03","GUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3879","20770-F, 79240-F","07-6-1128","CLAYTON, RILEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","13","39.0 N","10.0 E","N","","","","","426075.0","4165161.0","37.630609","-105.837813","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013607", +"2013610","W3893 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0015, W3893","22255-F","07201700374/11060610 - #1","ROGERS BROTHERS FARMS (ROGERS, GREGG & SANDRA); ROGERS, JUSTIN G.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","5","40.0 N","10.0 E","N","","","","","420671.0","4177401.0","37.740469","-105.900384","11/25/2008 14:28","https://dwr.state.co.us/Tools/Structures/2013610", +"2013612","W3900 WELL NO 01S","FIELD # 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3900","22573-F","13-14449","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","27","40.0 N","9.0 E","N","","","","","414586.0","4170740.0","37.679892","-105.968657","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013612", +"2013613","W3900 WELL NO 05S","FIELD #18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3900","22577-F","60511308287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","26","40.0 N","9.0 E","N","","","","","415326.0","4170708.0","37.679672","-105.960262","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013613", +"2013614","W3900 WELL NO 06S","FIELD #19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3900","22578-F","22-06215","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","40.0 N","9.0 E","N","","","","","416076.0","4170687.0","37.679552","-105.951756","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013614", +"2013615","W3905 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3905","21136-F","12061287/12061320","LOCK, ALFRED H.; NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","15","40.0 N","9.0 E","N","","","","","414579.0","4174762.0","37.716138","-105.969208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013615", +"2013616","W3919 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3919","16597-F","12204459/06200656","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","23","40.0 N","10.0 E","N","","","","","425029.0","4173180.0","37.702795","-105.850491","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013616", +"2013622","W3929 WELL NO 05","WALBURG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3929","20264-F, 20264-F-R","06-6-2093","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","33","40.0 N","10.0 E","N","","","","","422574.0","4169127.0","37.666064","-105.877907","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013622", +"2013623","W3933 WELL NO 01","NORTH RES SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3933","22528-F","06-8-2584","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","11","39.0 N","10.0 E","N","","","","","424491.0","4166096.0","37.638907","-105.855860","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013623", +"2013624","W3934 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0017, W3934","22527-F","09-8-1363","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","NE","SW","NE","14","39.0 N","10.0 E","N","","","","","425480.0","4164914.0","37.628335","-105.844531","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013624", +"2013625","W3935 WELL NO 01","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3013, W3935","21863-F, 90545-F","10062708/072017003084","ARTAECHEVARRIA, ASIER; ARTAECHEVARRIA, JOHN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","29","41.0 N","10.0 E","N","","","","","421057.0","4180404.0","37.767566","-105.896330","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013625", +"2013626","W3935 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3935","21862-F","10062710/10062877","4A FARMS; ARTAECHEVARRIA, ASIER; ARTAECHEVARRIA, JOHN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","29","41.0 N","10.0 E","N","","","","","421068.0","4181203.0","37.774767","-105.896292","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013626", +"2013627","W3936 WELL NO 01R","#11, REPLACES 2005374","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3936","6486-R-R","10062685/10062895","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","13","40.0 N","8.0 E","N","","","","","408040.0","4173979.0","37.708448","-106.043291","07/06/2009 13:48","https://dwr.state.co.us/Tools/Structures/2013627", +"2013628","W3937 WELL NO 01R","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3937","22604-F-R","23-06551-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","29","39.0 N","9.0 E","N","","","","","411098.0","4161104.0","37.592720","-106.007035","01/27/2004 10:09","https://dwr.state.co.us/Tools/Structures/2013628", +"2013629","W3938 WELL NO 01","CHICO 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3938","18755-F","10061906/06200658-100183","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","33","40.0 N","9.0 E","N","","","","","412438.0","4168873.0","37.662864","-105.992789","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013629", +"2013630","W3938 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3938","22075-F","10061906/06200658-100183","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","33","40.0 N","9.0 E","N","","","","","412826.0","4169148.0","37.665379","-105.988424","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013630", +"2013631","W3940 WELL NO 27R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3940","13375-F-R","16-05208-8 -WF PIVOT, 22-07414-06","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NW","11","39.0 N","9.0 E","N","","","","","415328.0","4166845.0","37.644858","-105.959791","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013631", +"2013632","W3941 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3941","18969-F","20005720","SEGER, GARY V.","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","SE","SE","NE","19","39.0 N","8.0 E","N","","","","","400073.0","4163372.0","37.612027","-106.132208","11/23/2022 08:34","https://dwr.state.co.us/Tools/Structures/2013632", +"2013633","W3944 WELL NO 17","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3944","23052-F, 23052-F-R","11060496/11060691","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","15","40.0 N","10.0 E","N","","","","","424041.0","4174159.0","37.711537","-105.861800","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013633", +"2013635","W3947 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3947","16588-F","08117986/08062001","SCHMIDT, BEN; SCHMIDT, LAVERNE D.; SCHMIDT, NANCY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","33","41.0 N","7.0 E","N","","","","","393570.0","4179720.0","37.758615","-106.208261","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013635", +"2013637","W3953 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3953","15418-R","06200679/12230542, 14-21161-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","14","40.0 N","10.0 E","N","","","","","425456.0","4175128.0","37.720386","-105.845847","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013637", +"2013638","W3953 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3953","22157-F","06200679/12230542, 14-21161-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","14","40.0 N","10.0 E","N","","","","","425839.0","4174787.0","37.717344","-105.841467","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013638", +"2013639","W3953 WELL NO 03","#10 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3953","22158-F, 22158-F-R","18-11224-06","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","13","40.0 N","10.0 E","N","","","","","426665.0","4174793.0","37.717465","-105.832096","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013639", +"2013640","W3953 WELL NO 04","#10 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3953","22838-F","24-05613-06","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NW","13","40.0 N","10.0 E","N","","","","","426577.0","4174966.0","37.719017","-105.833112","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013640", +"2013641","W3953 WELL NO 05","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3953","22839-F","06200679/12230542, 14-21161-8","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","14","40.0 N","10.0 E","N","","","","","425897.0","4174960.0","37.718908","-105.840827","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013641", +"2013642","W3956 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0035, W3956","17997-F, 17997-F-R","09061376","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","11","40.0 N","10.0 E","N","","","","","425842.0","4175603.0","37.724698","-105.841516","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013642", +"2013643","W3956 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0035, W3956","20576-F, 20576-F-R","09061376","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SE","11","40.0 N","10.0 E","N","","","","","425882.0","4175415.0","37.723007","-105.841043","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013643", +"2013644","W3956 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3956","17998-F","05083029/09061380","CHILES FARMS; CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","11","40.0 N","10.0 E","N","","","","","425064.0","4175612.0","37.724716","-105.850344","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013644", +"2013645","W3956 WELL NO 04","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0035, W3956","17999-F","09061289/09061401","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","11","40.0 N","10.0 E","N","","","","","425079.0","4176400.0","37.731819","-105.850255","08/14/2013 14:47","https://dwr.state.co.us/Tools/Structures/2013645", +"2013653","W3964 WELL NO 01R","#3, SOUTH DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3964","14115-R-R","06123287","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","40.0 N","7.0 E","N","","","","","391867.0","4174959.0","37.715513","-106.226882","01/27/2004 15:31","https://dwr.state.co.us/Tools/Structures/2013653", +"2013654","W3964 WELL NO 02","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3964","98215-VE, 50284-F-R, 50284-F-R, 50284-F-R","GP11-3688-8","WILSON RANCH PROPERTIES LLC; YUND, CHAY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","17","40.0 N","7.0 E","N","","","","","391474.0","4175179.0","37.717449","-106.231373","09/29/2004 09:34","https://dwr.state.co.us/Tools/Structures/2013654", +"2013656","W3965 WELL NO 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3965","22-R-R","07-4-1020","CRENSHAW, SHAWNA; SHAWNA R., JUSTIN W. & RYAN L. RHOADS IRREVOCABLE TRUST","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","19","40.0 N","7.0 E","N","","","","","389802.0","4173764.0","37.704499","-106.250126","01/23/2024 13:18","https://dwr.state.co.us/Tools/Structures/2013656", +"2013657","W3968 WELL NO 01R","NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3968","15863-R","15-07502-8","CSU - SLV RESEARCH CENTER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","18","40.0 N","8.0 E","N","","","","","398752.0","4174260.0","37.710001","-106.148683","08/20/2015 09:07","https://dwr.state.co.us/Tools/Structures/2013657", +"2013658","W3969 WELL NO 02R","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3969","15864-R-R, 15864-R-R","09090557","CSU - SLV RESEARCH CENTER","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","18","40.0 N","8.0 E","N","","","","","398745.0","4173699.0","37.704945","-106.148685","08/20/2015 09:08","https://dwr.state.co.us/Tools/Structures/2013658", +"2013664","W3972 WELL NO 06","FIELD #71","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3972","22280-F","15-06951-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","19","40.0 N","10.0 E","N","","","","","419353.0","4173144.0","37.701989","-105.914869","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013664", +"2013665","W3972 WELL NO 08","FIELD #70","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3972","23703-F","14-08166-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","20","40.0 N","10.0 E","N","","","","","420998.0","4173139.0","37.702087","-105.896210","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013665", +"2013668","W3804 WELL NO 01R","S. TOLL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3804","10793-R-R","100898/09061368","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","18","40.0 N","9.0 E","N","","","","","408911.0","4173982.0","37.708562","-106.033411","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013668", +"2013669","93CW009 WELL NO 01R","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0009","22889-F-R","052018002644/12062877","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","1","40.0 N","9.0 E","N","","","","","417014.0","4177194.0","37.738279","-105.941861","01/09/2004 16:24","https://dwr.state.co.us/Tools/Structures/2013669", +"2013670","93CW009 WELL NO 01S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0009","38407-F","052013004564/12062682","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","36","40.0 N","9.0 E","N","","","","","417914.0","4169898.0","37.672607","-105.930825","12/05/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013670", +"2013671","93CW015 WELL NO 03S","FIELD D","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0015","42638-F","09060221/01201338","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","40.0 N","9.0 E","N","","","","","413608.0","4177985.0","37.745092","-105.980607","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013671", +"2013672","93CW015 WELL NO 09S","FIELD C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0015","42637-F","02071276/09060256","HOLLAND, KEITH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","3","40.0 N","9.0 E","N","","","","","413615.0","4177203.0","37.738046","-105.980434","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013672", +"2013673","93CW015 WELL NO YOWS 02S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0015","42639-F","05060773/022019002165","WAGAR, JOSH; WAGAR, JOSHUA L. & SAMANTHA L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","5","40.0 N","9.0 E","N","","","","","411353.0","4177032.0","37.736288","-106.006083","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013673", +"2013674","93CW016 WELL NO 01S","K & M 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42632-F","04060828/04060861","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SW","4","40.0 N","9.0 E","N","","","","","412172.0","4177025.0","37.736304","-105.996788","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013674", +"2013675","93CW016 WELL NO 02S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42633-F","052013003281/12230543","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","4","40.0 N","9.0 E","N","","","","","411997.0","4177991.0","37.744993","-105.998891","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013675", +"2013676","93CW016 WELL NO 04S","K&M #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42636-F","04060829/04060845","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","9","40.0 N","9.0 E","N","","","","","412003.0","4176394.0","37.730601","-105.998629","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013676", +"2013677","93CW016 WELL NO 05S","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42382-F, 42382-F-R","05083038/06052215","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NE","NE","9","40.0 N","9.0 E","N","","","","","413142.0","4176465.0","37.731350","-105.985714","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013677", +"2013678","93CW016 WELL NO 06S","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42634-F","05063002/05063047","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","4","40.0 N","9.0 E","N","","","","","413166.0","4177974.0","37.744951","-105.985622","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013678", +"2013679","93CW016 WELL NO 07S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0016","42635-F","05063011/05063040","ELEVATION AG LLC; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","4","40.0 N","9.0 E","N","","","","","413165.0","4177198.0","37.737958","-105.985540","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013679", +"2013680","93CW016 WELL NO 08S","5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0035, 93CW0016","42381-F","09060228/09060254","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","10","40.0 N","9.0 E","N","","","","","413621.0","4176394.0","37.730755","-105.980270","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013680", +"2013683","93CW036 WELL NO 01","BEIRIGER #13 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0036","22880-F","07060390/012018003205","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","9","40.0 N","10.0 E","N","","","","","421490.0","4176466.0","37.732113","-105.890988","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013683", +"2013684","93CW037 WELL NO 01A","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0037","41672-F","07060372/07060923","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","4","40.0 N","10.0 E","N","","","","","421891.0","4177975.0","37.745747","-105.886600","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013684", +"2013685","93CW038 WELL NO 02A","BEIRIGER 12 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0038","41297-F","07060368/07060919","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","4","40.0 N","10.0 E","N","","","","","421876.0","4177170.0","37.738491","-105.886684","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013685", +"2013686","93CW039 WELL NO 06R","#8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","93CW0039","12513-R","052014002706/0620160","RICHARD F. MCNITT TRUST FBO MELINDA DIANE MARINO (MARINO, MELINDA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","30","40.0 N","8.0 E","N","","","","","399903.0","4170832.0","37.679236","-106.135156","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013686", +"2013688","94CW0001 WELL NO 04R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0001","12511-R","11060554/12212596","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","31","40.0 N","8.0 E","N","","","","","399904.0","4170044.0","37.672135","-106.135037","08/12/2022 14:25","https://dwr.state.co.us/Tools/Structures/2013688", +"2013690","94CW020 WELL NO 02A","CIRCLE # 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","94CW0020","18861-F","03062354/11061633","GRANT, BETTY K.; RIO WEST FARMS, LLC (NEELY, TYLER)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","40.0 N","6.0 E","N","","","","","387710.0","4170183.0","37.671976","-106.273301","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013690", +"2013692","94CW037 WELL NO 01R","#18 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0037","16124-F-R","07-6-1110","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BILL; COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","32","40.0 N","10.0 E","N","","","","","419758.0","4169540.0","37.669544","-105.909878","01/27/2004 12:11","https://dwr.state.co.us/Tools/Structures/2013692", +"2013693","94CW019 WELL NO 01A","NORTH STARR #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0019","1840-R-R","GP13-5452-8","DAVIS, SCOTT & MARY; DICKEY, GARY & BRIGITTE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","20","40.0 N","7.0 E","N","","","","","390607.0","4172746.0","37.695422","-106.240843","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013693", +"2013694","94CW027 WELL NO 01S","FIELD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0001, 94CW0027","25357-F","06-8-2604","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","6","39.0 N","10.0 E","N","","","","","418514.0","4167535.0","37.651365","-105.923759","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013694", +"2013695","04CW30 WELL NO 1-R","95CW015 WELL NO 01R, WORLEY QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0030, 95CW0015","13677-F-R","05060236/05060270","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","6","39.0 N","8.0 E","N","","","","","399097.0","4168461.0","37.657781","-106.143967","07/01/2010 16:16","https://dwr.state.co.us/Tools/Structures/2013695", +"2013699","95CW002 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0002","23457-F","12062585/12062693-101083","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","9","39.0 N","10.0 E","N","","","","","422143.0","4166276.0","37.640333","-105.882489","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013699", +"2013701","95CW003 WELL NO 01R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0003","12516-R","04061980/04062020-1287764","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","30","40.0 N","8.0 E","N","","","","","399100.0","4170840.0","37.679220","-106.144262","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013701", +"2013705","79CW007 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0007","20896-S","06-8-4924","MITCHELL REAL ESTATE LLC; MITCHELL, JASON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","10","39.0 N","8.0 E","N","","","","","403898.0","4166059.0","37.636650","-106.089230","03/20/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013705", +"2013706","W0243 WELL NO 01","NYE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0010, W0243","5968-R-R","20-06165-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","29","40.0 N","9.0 E","N","","","","","410513.0","4170760.0","37.679684","-106.014843","03/20/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013706", +"2013708","W0102 WELL NO 03","CHICO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0102","15206-F","12212655/06214533","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","29","40.0 N","9.0 E","N","","","","","411273.0","4170770.0","37.679848","-106.006227","03/20/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013708", +"2013711","W3913 WELL NO 01-A-1","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3913","22469-F","052013004564/12062682","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","36","40.0 N","9.0 E","N","","","","","417726.0","4169817.0","37.671861","-105.932948","12/26/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013711", +"2013712","W3913 WELL NO 06R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3913","22582-F","15-11377-6","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","30","40.0 N","10.0 E","N","","","","","418241.0","4170347.0","37.676683","-105.927168","12/26/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013712", +"2013713","W3913 WELL NO 06RR","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3913","22583-F","06-6-1972","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","30","40.0 N","10.0 E","N","","","","","418170.0","4170436.0","37.677479","-105.927983","12/26/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013713", +"2013714","94CW037 WELL NO 01S","#18 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0037","35060-F","25-05925-04","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","31","40.0 N","10.0 E","N","","","","","419757.0","4169929.0","37.673050","-105.909932","01/27/2004 12:12","https://dwr.state.co.us/Tools/Structures/2013714", +"2013715","94CW037 WELL NO 02","#18 CENTER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0037","20574-F","07-6-1111","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BILL; COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","32","40.0 N","10.0 E","N","","","","","420144.0","4169916.0","37.672967","-105.905543","01/27/2004 12:14","https://dwr.state.co.us/Tools/Structures/2013715", +"2013719","96CW0005 KIRKPATRICK AUG 1","PINKY2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","45102-F","12230500","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/1997","10/31/2025","3","20","ALAMOSA","","","","SW","SW","5","39.0 N","10.0 E","N","","","","","419976.0","4167437.0","37.650610","-105.907176","09/25/2007 12:16","https://dwr.state.co.us/Tools/Structures/2013719", +"2013720","96CW0005 KIRKPATRICK AUG 2","PINKY 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","","06-6-1920","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/1997","10/31/2025","3","20","ALAMOSA","","","","SW","SW","5","39.0 N","10.0 E","N","","","","","419753.0","4167321.0","37.649546","-105.909691","09/25/2007 12:16","https://dwr.state.co.us/Tools/Structures/2013720", +"2013721","96CW0005 KIRKPATRICK AUG 3","PINKY 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","45103-F","06-6-2083","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/1997","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","39.0 N","10.0 E","N","","","","","419176.0","4167392.0","37.650135","-105.916239","09/25/2007 12:17","https://dwr.state.co.us/Tools/Structures/2013721", +"2013722","96CW0005 KIRKPATRICK AUG 4","PINKY 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","12193-AD","07-6-1104","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/1997","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","39.0 N","10.0 E","N","","","","","419029.0","4167224.0","37.648608","-105.917887","09/25/2007 12:17","https://dwr.state.co.us/Tools/Structures/2013722", +"2013724","92CW49 WELL NO 38391-F","FIELD #27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38391-F","24-02951","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","25","40.0 N","9.0 E","N","","","","","417778.0","4171750.0","37.689286","-105.932576","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013724", +"2013725","92CW49 WELL NO 22274-F","FIELD #27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","22274-F","24-02951","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","25","40.0 N","9.0 E","N","","","","","417731.0","4171536.0","37.687353","-105.933085","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013725", +"2013728","96CW043 WELL NO 01","MOSCHETTI WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","96CW0043","24937-F-R","10063721-100480","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","9","39.0 N","8.0 E","N","","","","","402692.0","4166204.0","37.637830","-106.102916","01/27/2004 09:20","https://dwr.state.co.us/Tools/Structures/2013728", +"2013730","94CW038 WELL NO 01","#19 CENTER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0038","22541-F","17-08359-6","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BILL; COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","32","40.0 N","10.0 E","N","","","","","420947.0","4169920.0","37.673072","-105.896439","01/27/2004 10:51","https://dwr.state.co.us/Tools/Structures/2013730", +"2013731","94CW038 WELL NO 01-S","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0038","26228-F","21-04340-06","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BILL; COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","32","40.0 N","10.0 E","N","","","","","420770.0","4169924.0","37.673093","-105.898446","01/27/2004 10:52","https://dwr.state.co.us/Tools/Structures/2013731", +"2013734","95CW033 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0033","24986-F","12212674/03241852","DICKEY, GARY & BRIGITTE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","20","40.0 N","7.0 E","N","","","","","390603.0","4172378.0","37.692105","-106.240833","04/30/1998 00:00","https://dwr.state.co.us/Tools/Structures/2013734", +"2013744","LACY WELL #1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","96CW0040","10326-R","08061982/08062009","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SE","35","41.0 N","6.0 E","N","","","","","387207.0","4178674.0","37.748427","-106.280319","08/24/2007 15:45","https://dwr.state.co.us/Tools/Structures/2013744", +"2013745","LACY WELL #1A","LACY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","96CW0040","49798-F","08061982/08062009","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","SE","35","41.0 N","6.0 E","N","","","","","387204.0","4179076.0","37.752049","-106.280416","08/24/2007 15:41","https://dwr.state.co.us/Tools/Structures/2013745", +"2013746","92CW49 WELL NO 2 SS","FIELD #15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38389-F","20-04382","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","27","40.0 N","9.0 E","N","","","","","414542.0","4171721.0","37.688729","-105.969271","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013746", +"2013747","92CW49 WELL NO 1 SS","FIELD #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38390-F","13-14449","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","27","40.0 N","9.0 E","N","","","","","414535.0","4170922.0","37.681527","-105.969257","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013747", +"2013748","92CW49 WELL NO 5 SS","FIELD #18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38357-F","60511308287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","26","40.0 N","9.0 E","N","","","","","414945.0","4170723.0","37.679772","-105.964584","01/11/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013748", +"2013749","92CW49 WELL NO 1 S","FIELD #21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38355-F","18-11221, 21-00545","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","1","39.0 N","9.0 E","N","","","","","417571.0","4167926.0","37.654805","-105.934492","01/11/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013749", +"2013750","92CW49 WELL NO 1 SSS","FIELD #22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","23452-F, 23452-F-R","146030229, 24-05612-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","1","39.0 N","9.0 E","N","","","","","417682.0","4167336.0","37.649497","-105.933167","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013750", +"2013751","92CW49 WELL NO 4 SS","FIELD #13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38387-F","19-05233","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","26","40.0 N","9.0 E","N","","","","","416021.0","4171718.0","37.688838","-105.952498","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013751", +"2013752","92CW49 WELL NO 4/6 S","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38356-F","21-06191","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","14","40.0 N","9.0 E","N","","","","","415982.0","4174763.0","37.716277","-105.953292","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013752", +"2013753","92CW49 WELL NO 5 S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38386-F","17-05926-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","15","40.0 N","9.0 E","N","","","","","413776.0","4174474.0","37.713467","-105.978284","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013753", +"2013754","92CW49 WELL NO 3/8 S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38354-F, 75831-F","10060721/10061052","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SE","11","40.0 N","9.0 E","N","","","","","416167.0","4175765.0","37.725324","-105.951308","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013754", +"2013755","92CW49 WELL NO 3 SS","FIELD #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","92CW0049","38388-F","15-09214-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","26","40.0 N","9.0 E","N","","","","","415347.0","4171720.0","37.688794","-105.960142","03/31/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013755", +"2013756","99CW0009 WELL NO 1A","#6 & 7 REDBARN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","99CW0009","48533-F, 52093-F","21-04206-08","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/1999","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","30","40.0 N","7.0 E","N","","","","","389348.0","4170958.0","37.679159","-106.254849","02/18/2011 16:36","https://dwr.state.co.us/Tools/Structures/2013756", +"2013760","99CW2 WELL NO 1A","SUBMERSIBLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0002","47203-F","06-6-2052","MASON FAMILY HOLDINGS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","26","40.0 N","10.0 E","N","","","","","424625.0","4171318.0","37.685981","-105.854881","03/17/2008 15:28","https://dwr.state.co.us/Tools/Structures/2013760", +"2013761","97CW0024 WELL NO 5A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0024","41939-F","21014318","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2022","10/31/2025","3","20","SAGUACHE","","","","NE","NW","30","41.0 N","8.0 E","N","2400","W","300","N","399595.0","4181606.0","37.776292","-106.140136","02/06/2026 13:10","https://dwr.state.co.us/Tools/Structures/2013761", +"2013762","97CW24 WELL NO 16RR","3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0024","1332-R-R","05061461/05061478","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","29","41.0 N","8.0 E","N","","","","","400834.0","4180488.0","37.766353","-106.125917","04/03/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013762", +"2013774","97CW033 WELL NO 1-4A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0033","47244-F, 47244-F-R","21-04359-08","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","2","40.0 N","10.0 E","N","","","","","425098.0","4178007.0","37.746303","-105.850205","12/19/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013774", +"2013775","98CW033 WELL NO 1A","WELCH STORAGE BINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0033","50283-F, 89549-F","3946171","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","21","40.0 N","9.0 E","N","","","","","412574.0","4173512.0","37.704684","-105.991804","05/09/2024 15:13","https://dwr.state.co.us/Tools/Structures/2013775", +"2013779","98CW003 WELL NO 1R","#1 SCHOKERAL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0003","1465-R-R","072019003986","GRAND SLAM RANCH, LLC (HEMMERLING, MANNY); HEMMERLING, MANNY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","27","40.0 N","6.0 E","N","","","","","385415.0","4171647.0","37.684884","-106.299549","06/30/2008 12:00","https://dwr.state.co.us/Tools/Structures/2013779", +"2013780","98CW003 WELL NO 2A","#3 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0003","25077-F","07202109/05201409","GRAND SLAM RANCH, LLC (HEMMERLING, MANNY); HEMMERLING, MANNY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","26","40.0 N","6.0 E","N","","","","","386618.0","4170604.0","37.675635","-106.285746","02/02/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013780", +"2013781","98CW003 WELL NO 1A"," #4 SHORT PIERCE 7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0003","25076-F","05201461","GRAND SLAM RANCH, LLC (HEMMERLING, MANNY); HEMMERLING, MANNY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","26","40.0 N","6.0 E","N","","","","","387065.0","4171134.0","37.680466","-106.280760","02/02/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013781", +"2013782","98CW003 WELL NO 3A","#5 TOLLI","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0003","35920-F","GP13-2378-8","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","30","40.0 N","7.0 E","N","","","","","389374.0","4171757.0","37.686362","-106.254675","06/17/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013782", +"2013784","98CW022 WELL NO 1A","9 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0022","45734-F","11060573/11060617","KOEHN IRREVOCABLE TRUST AGREEMENT; KOEHN, KEVIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","20","40.0 N","7.0 E","N","","","","","391831.0","4173386.0","37.701334","-106.227057","03/19/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013784", +"2013787","98CW029 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0029","42592-F","6733133, 6733135, 6733143","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2010","10/31/2025","3","20","ALAMOSA","","","NE","NE","NE","7","39.0 N","9.0 E","N","","","","","409928.0","4167072.0","37.646390","-106.021021","03/04/2010 16:50","https://dwr.state.co.us/Tools/Structures/2013787", +"2013788","98CW029 WELL NO 11/14A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0029","46102-F","232702185","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","6","39.0 N","9.0 E","N","","","","","409155.0","4167897.0","37.653749","-106.029885","03/19/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013788", +"2013789","W2065A WELL NO 04","FIELD #4S CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0030","6957-F","052018002645","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","8","39.0 N","9.0 E","N","","","","","410325.0","4165936.0","37.636191","-106.016382","01/07/2009 13:15","https://dwr.state.co.us/Tools/Structures/2013789", +"2013790","98CW031 WELL NO 1/2/3A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0031","157162-, 50471-F","6733134, 6733144","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2010","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","6","39.0 N","9.0 E","N","","","","","408397.0","4167956.0","37.654205","-106.038484","01/12/2024 11:36","https://dwr.state.co.us/Tools/Structures/2013790", +"2013791","99CW001 WELL NO 6","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","99CW0001","16956-F, 16956-F-R","11060569/11060616","DAVIS, KENNETH G. & BETH R.; KELLER, CHARLES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","20","40.0 N","7.0 E","N","","","","","391012.0","4173329.0","37.700724","-106.236337","03/19/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013791", +"2013795","99CW16 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","99CW0016","36158-F","05060767/10190351","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","24","40.0 N","6.0 E","N","","","","","387770.0","4172610.0","37.693853","-106.272994","07/16/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013795", +"2013796","99CW037 WELL NO 1A","SEED STORAGE SE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0037","50632-F, 85303-F","07083707/02082251","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","20","40.0 N","9.0 E","N","","","","","410877.0","4172089.0","37.691696","-106.010879","12/06/2023 08:44","https://dwr.state.co.us/Tools/Structures/2013796", +"2013797","2000CW002 WELL NO 11R","E. SCHMIDT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0002, 22CW0023","13406-R-R, 13406-R-R","08223645/12212595","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","14","40.0 N","7.0 E","N","","","","","395918.0","4174892.0","37.715379","-106.180920","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013797", +"2013798","2000CW003 WELL NO 3A","TEDD'S HOUSE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0003","49804-F","07060373/07060935","HENNIGH, TEDD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","26","40.0 N","7.0 E","N","","","","","396666.0","4170867.0","37.679192","-106.171863","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013798", +"2013800","2000CW012 WELL NO 3A","9 MILE, PATTERSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0012","23861-F","08061983/08062013","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","14","40.0 N","8.0 E","N","","","","","406431.0","4174006.0","37.708529","-106.061545","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013800", +"2013801","99CW011 WELL NO 2R","17 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0011","139-R-R","01061403/052018001070","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","33","40.0 N","8.0 E","N","","","","","403139.0","4170002.0","37.672104","-106.098354","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013801", +"2013802","98CW017 WELL NO 4A","31218F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0017","31218-F","19003807, 20005717","MUELLER, MARK; MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","3","39.0 N","8.0 E","N","","","","","404975.0","4167262.0","37.647603","-106.077182","02/06/2026 13:12","https://dwr.state.co.us/Tools/Structures/2013802", +"2013803","97CW031 WELL NO 4R","R10707RF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0031","10707-R-R","11060539/11060628-100604","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","24","39.0 N","8.0 E","N","","","","","407057.0","4162732.0","37.606992","-106.053009","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013803", +"2013804","97CW030 WELL NO 1S","38016F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0030","38016-F","09060688/09060723","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SE","SE","16","39.0 N","9.0 E","N","","","","","412744.0","4164083.0","37.619725","-105.988748","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013804", +"2013805","99CW020 WELL NO 1","EAST Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","23827-F, 23827-F-R","10062766/12062688","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","8","39.0 N","10.0 E","N","","","","","420115.0","4165808.0","37.635942","-105.905422","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013805", +"2013806","99CW020 WELL NO 2","EAST Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","23828-F","10062766/12062688","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","8","39.0 N","10.0 E","N","","","","","420500.0","4165815.0","37.636038","-105.901060","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013806", +"2013807","99CW020 WELL NO 2A","EAST Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","42259-F","10062766/12062688","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","8","39.0 N","10.0 E","N","","","","","419716.0","4166028.0","37.637889","-105.909968","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013807", +"2013808","99CW020 WELL NO 2S","EAST Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","43393-F","10062766/12062688","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","8","39.0 N","10.0 E","N","","","","","419770.0","4165560.0","37.633676","-105.909305","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013808", +"2013809","99CW020 WELL NO 1A","NORTH QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","99CW0020","19798-F","06123271/12060187-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","7","39.0 N","10.0 E","N","","","","","418309.0","4166713.0","37.643939","-105.925990","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013809", +"2013810","99CW020 WELL NO 1S","NORTH QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","99CW0020","43372-F","06123271/12060187-GROUNDWATER","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","7","39.0 N","10.0 E","N","","","","","418702.0","4166708.0","37.643929","-105.921535","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013810", +"2013811","99CW020 WELL NO PUMP 5R","NE QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","43374-F, 43374-F-R","06123293/12062700, 06-6-2153","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","7","39.0 N","10.0 E","N","","","","","419249.0","4166700.0","37.643905","-105.915335","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013811", +"2013812","99CW020 WELL NO PUMP 4S","NE QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","99CW0020","43373-F","06123293/12062700, 06-6-2153","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","7","39.0 N","10.0 E","N","","","","","419112.0","4166702.0","37.643911","-105.916888","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013812", +"2013813","99CW020 WELL NO PUMP 6A","NE QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","46645-F","06123293/12062700, 06-6-2153","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","7","39.0 N","10.0 E","N","","","","","418899.0","4166547.0","37.642495","-105.919285","07/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013813", +"2013814","2002CW005 WELL NO 1-S","CELLAR QUARTER SOUTHWEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","39104-F","06123277/05062214-GROUNDWATER, 06-6-2096","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","18","39.0 N","10.0 E","N","","","","","418885.0","4164899.0","37.627642","-105.919260","12/11/2008 15:12","https://dwr.state.co.us/Tools/Structures/2013814", +"2013815","99CW020 WELL NO 1RRA","45287F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0020","45287-F","19861082","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2021","10/31/2025","3","20","ALAMOSA","","","","NW","NE","18","39.0 N","10.0 E","N","","","","","418982.0","4165390.0","37.632075","-105.918216","02/06/2026 13:13","https://dwr.state.co.us/Tools/Structures/2013815", +"2013817","2001CW001 WELL NO 1A","23232F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0001","23232-F","12062554/052013003806","PETERSON, MARK T. & MICHELLE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","15","40.0 N","8.0 E","N","","","","","404008.0","4174819.0","37.715605","-106.089137","04/01/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013817", +"2013819","99CW046 WELL NO 1A","RINKY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0046","47515-F","09061927/09062010","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","21","40.0 N","10.0 E","N","","","","","421445.0","4173540.0","37.705739","-105.891183","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013819", +"2013820","99CW046 WELL NO 2A","RC WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0046","43813-F","09212333/09062003","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","21","40.0 N","10.0 E","N","","","","","422379.0","4173154.0","37.702340","-105.880547","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013820", +"2013821","99CW046 WELL NO 2B","GATOR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0046","46129-F","09061968/10190353","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","22","40.0 N","10.0 E","N","","","","","423449.0","4173169.0","37.702565","-105.868412","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013821", +"2013822","99CW046 WELL NO 2C","GATOR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0046","47450-F","09061968/10190353","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","22","40.0 N","10.0 E","N","","","","","423239.0","4173169.0","37.702548","-105.870794","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013822", +"2013823","99CW046 WELL NO 1AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","99CW0046","26850-F, 42622-F","07-8-1483, 10190404","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","23","40.0 N","10.0 E","N","","","","","425825.0","4173363.0","37.704509","-105.841481","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013823", +"2013824","99CW046 WELL NO TW1","RINKY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0046","23301-F","09061927/09062010","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","21","40.0 N","10.0 E","N","","","","","421820.0","4173151.0","37.702266","-105.886887","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013824", +"2013826","95CW021 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0021","12630-R, 12630-R-R, 12630-R-R","04061979/04062025","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","28","40.0 N","7.0 E","N","","","","","392261.0","4171277.0","37.682380","-106.221868","02/06/2026 13:14","https://dwr.state.co.us/Tools/Structures/2013826", +"2013827","94CW038 WELL NO 1SS","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0038","34901-F","07-6-1108","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COOLEY, BILL; COOLEY, BOB","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","32","40.0 N","10.0 E","N","","","","","420562.0","4169620.0","37.670335","-105.900772","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013827", +"2013829","99CW052 WELL NO 1S","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0052","44512-F, 44512-F-R","12204468/10061039","GSR FARMS INC (BEIRIGER, JEFF)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","NW","NW","36","41.0 N","9.0 E","N","","","","","417052.0","4179777.0","37.761561","-105.941725","05/22/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013829", +"2013830","99CW052 WELL NO 2S","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0052","44511-F, 44511-F-R","14-11230-8","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","NW","NE","36","41.0 N","9.0 E","N","","","","","417865.0","4179751.0","37.761400","-105.932493","05/22/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013830", +"2013831","99CW052 WELL NO 1R","RANDLES P1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0052","19800-F-R, 51817-F","06-6-2112","BEIRIGER, KYLE M.; RANDLES, PAUL A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SW","30","41.0 N","10.0 E","N","","","","","418299.0","4180134.0","37.764890","-105.927610","07/28/2009 15:01","https://dwr.state.co.us/Tools/Structures/2013831", +"2013832","01CW009 WELL NO 1A","#4, 37648F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0009","37648-F","212236842","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2021","10/31/2025","3","20","SAGUACHE","","","","NE","SE","33","41.0 N","9.0 E","N","","","","","413302.0","4179116.0","37.755247","-105.984203","12/06/2023 16:23","https://dwr.state.co.us/Tools/Structures/2013832", +"2013833","00CW028 WELL NO 1R","LYDIA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0028","37505-F, 37505-F-R","GP12-3997-8","TXCOCA PROPERTY HOLDINGS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","1","40.0 N","10.0 E","N","","","","","426548.0","4177862.0","37.745114","-105.833734","10/23/2014 08:44","https://dwr.state.co.us/Tools/Structures/2013833", +"2013836","00CW015 WELL NO 2S","MYERS 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0015","42015-F","11060505/11060683","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NE","NW","NW","35","41.0 N","9.0 E","N","","","","","415428.0","4179779.0","37.761430","-105.960160","10/24/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013836", +"2013837","00CW015 WELL NO 7S","MYERS 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0015, 23CW0014","42016-F, 89298-F","05083049/05083097","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","35","41.0 N","9.0 E","N","","","","","415204.0","4178786.0","37.752460","-105.962587","10/24/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013837", +"2013838","96CW011 WELL NO 02RR","8 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","96CW0011","6042-R-R","100157/10061064","HANSEN RANCHES CO.; RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NE","27","40.0 N","8.0 E","N","","","","","404368.0","4171409.0","37.684912","-106.084605","06/11/2013 13:48","https://dwr.state.co.us/Tools/Structures/2013838", +"2013839","2001CW034 WELL NO 1","MOODY SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","01CW0034","16163-R","05060242/05060272","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SW","31","41.0 N","7.0 E","N","","","","","389868.0","4178628.0","37.748337","-106.250114","01/06/2003 00:00","https://dwr.state.co.us/Tools/Structures/2013839", +"2013840","2000CW037 WELL NO 17S","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0037","43717-F","11060496/11060691","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","15","40.0 N","10.0 E","N","","","","","424234.0","4173987.0","37.710003","-105.859593","12/06/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013840", +"2013841","2000CW037 WELL NO 2S","44149F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0037","44149-F","11061529/12230538","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","22","40.0 N","10.0 E","N","","","","","424225.0","4173175.0","37.702684","-105.859610","12/06/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013841", +"2013842","W3442 WELL NO 1","#27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3442","18633-F, 18633-F-R","02060436/02060458","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","SW","SW","SW","32","41.0 N","10.0 E","N","","","","","420011.0","4178405.0","37.749460","-105.907984","10/30/2007 15:27","https://dwr.state.co.us/Tools/Structures/2013842", +"2013843","2002CW07 WELL NO 2R","KENSER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0007","1481-R-R","11060511/11060676","ROGERS, BARRY K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","8","40.0 N","8.0 E","N","","","","","401594.0","4176449.0","37.730037","-106.116742","08/15/2003 14:22","https://dwr.state.co.us/Tools/Structures/2013843", +"2013845","98CW034 WELL NO 6R","KENS WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0034","5817-F-R","11061398/05062203","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","31","40.0 N","8.0 E","N","","","","","399085.0","4169237.0","37.664773","-106.144210","08/15/2003 15:44","https://dwr.state.co.us/Tools/Structures/2013845", +"2013847","2000CW037 WELL NO 3-S","#10 SOUTH FKA WDID 2014218","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0037","44737-F, 44737-F-R, 44737-F-R","18-11219-06","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","NW","13","40.0 N","10.0 E","N","","","","","426509.0","4174405.0","37.713955","-105.833827","08/18/2003 16:55","https://dwr.state.co.us/Tools/Structures/2013847", +"2013848","2000CW037 WELL NO 1-S","#11 SW, FKA 2014216","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0037, 17CW3022","44148-F-R, 44148-F-R","18-04845-06","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","13","40.0 N","10.0 E","N","","","","","427185.0","4174411.0","37.714063","-105.826159","08/18/2003 16:55","https://dwr.state.co.us/Tools/Structures/2013848", +"2013850","2002CW005 WELL NO 5-R","WEST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0005","13463-F-R","062013000928/062019001001","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","8","39.0 N","10.0 E","N","","","","","420102.0","4166671.0","37.643718","-105.905664","08/20/2003 09:51","https://dwr.state.co.us/Tools/Structures/2013850", +"2013851","2002CW005 WELL NO 5-S","WEST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0005","26457-F","062013000928/062019001001","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","8","39.0 N","10.0 E","N","","","","","419704.0","4166666.0","37.643638","-105.910174","08/20/2003 09:53","https://dwr.state.co.us/Tools/Structures/2013851", +"2013852","2002CW005 WELL NO 1-R","EAST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0005","57312-F","10062730/12062690","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","8","39.0 N","10.0 E","N","","","","","420713.0","4166650.0","37.643582","-105.898737","08/20/2003 10:04","https://dwr.state.co.us/Tools/Structures/2013852", +"2013853","2002CW005 WELL NO 1-S","EAST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0005","22293-F, 57313-F","10062730/12062690","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","8","39.0 N","10.0 E","N","","","","","420907.0","4166711.0","37.644148","-105.896545","08/20/2003 10:07","https://dwr.state.co.us/Tools/Structures/2013853", +"2013854","2002CW005 WELL NO 1-SS","EAST C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0005","57314-F","10062730/12062690","NISSEN FARMS LLC (NISSEN, LYLE); NISSEN, ERIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","8","39.0 N","10.0 E","N","","","","","420526.0","4166798.0","37.644899","-105.900872","08/20/2003 10:08","https://dwr.state.co.us/Tools/Structures/2013854", +"2013855","2002CW009 WELL NO 1-S","CHICO 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0009","51707-F","12204455/06214534-100239","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","33","40.0 N","9.0 E","N","","","","","412869.0","4170130.0","37.674233","-105.988053","08/20/2003 11:04","https://dwr.state.co.us/Tools/Structures/2013855", +"2013856","2002CW034 WELL JORDE 1-B","SUP 30","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0034","59744-F","03060380/03060423","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","NW","SW","SE","29","41.0 N","9.0 E","N","","","","","410960.0","4180280.0","37.765521","-106.010940","08/20/2003 14:10","https://dwr.state.co.us/Tools/Structures/2013856", +"2013858","2002CW057 WELL NO 1R","#14 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0057, 15CW0003","6817-R-R","15-15191-8","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","29","40.0 N","7.0 E","N","","","","","390985.0","4171720.0","37.686221","-106.236403","08/20/2003 16:41","https://dwr.state.co.us/Tools/Structures/2013858", +"2013859","2002CW059 WELL NO 9R","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0059","6543-R-R","01062039/01062067","PRENTICE, M. L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","22","39.0 N","8.0 E","N","","","","","404638.0","4163579.0","37.614378","-106.080521","05/23/2007 15:08","https://dwr.state.co.us/Tools/Structures/2013859", +"2013860","2002CW066 WELL NO 1A","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0066","42008-F","11060526/12230532","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","SW","20","40.0 N","10.0 E","N","","","","","420109.0","4172514.0","37.696377","-105.906225","08/20/2003 17:15","https://dwr.state.co.us/Tools/Structures/2013860", +"2013862","2002CW066 WELL NO 3A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0066","30576-F","11060537/05201411","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","2","40.0 N","9.0 E","N","","","","","416023.0","4177192.0","37.738171","-105.953107","08/20/2003 17:19","https://dwr.state.co.us/Tools/Structures/2013862", +"2013863","2002CW020 WELL NO 1-R","# 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0020","25153-F","12212665/08223634, GP12-4377-6","SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","35","39.0 N","9.0 E","N","","","","","415138.0","4160228.0","37.585207","-105.961177","08/29/2003 14:30","https://dwr.state.co.us/Tools/Structures/2013863", +"2013864","2002CW020 WELL NO 1-S","# 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0020","60257-F","12212665/08223634, GP12-4377-6","SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","35","39.0 N","9.0 E","N","","","","","415292.0","4160228.0","37.585221","-105.959433","08/29/2003 14:33","https://dwr.state.co.us/Tools/Structures/2013864", +"2013866","W3659 WELL NO 1A","11N-4W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0001, W3659","21020-F, 21020-F-R","05062252/05062213","PEPPER, KELBY; PEPPER, KELBY & JACQUE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","4","40.0 N","7.0 E","N","","","","","392687.0","4177370.0","37.737336","-106.217936","06/24/2008 12:33","https://dwr.state.co.us/Tools/Structures/2013866", +"2013867","03CW0026 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","03CW0026","60849-F","20005840","HENNIGH, TEDD","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","SW","SE","SE","12","40.0 N","7.0 E","N","","","","","398537.0","4175375.0","37.720025","-106.151277","02/06/2026 13:15","https://dwr.state.co.us/Tools/Structures/2013867", +"2013868","2003CW0023 NO. 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","03CW0023, 16CW0012","10261-R-R","10113887, 17-11571-08","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","40.0 N","10.0 E","N","","","","","421062.0","4177969.0","37.745622","-105.896008","03/25/2009 14:30","https://dwr.state.co.us/Tools/Structures/2013868", +"2013873","02CW0019 WELL NO 1R","# 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0019","60758-F","12062613/09212244","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","27","39.0 N","9.0 E","N","","","","","413904.0","4161012.0","37.592158","-105.975244","02/24/2005 10:15","https://dwr.state.co.us/Tools/Structures/2013873", +"2013874","02CW0019 WELL NO 1S","# 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0019","60757-F","12062613/09212244","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","27","39.0 N","9.0 E","N","","","","","414315.0","4161045.0","37.592494","-105.970593","02/24/2005 10:15","https://dwr.state.co.us/Tools/Structures/2013874", +"2013875","02CW0061 WELL NO 1R","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0061","606-R-R","10113836/12230540","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","23","40.0 N","8.0 E","N","","","","","405613.0","4173205.0","37.701226","-106.070720","12/14/2007 16:40","https://dwr.state.co.us/Tools/Structures/2013875", +"2013877","02CW0056 WELL NO PUMP 01","SUMMIT CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0056","6155-R, 6155-F-R","8841989","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","SW","SW","SE","33","41.0 N","8.0 E","N","","","","","402908.0","4178588.0","37.749453","-106.102119","09/03/2021 15:35","https://dwr.state.co.us/Tools/Structures/2013877", +"2013879","01CW0027 WELL NO 5-R","JDS #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0027","22608-F, 22608-F","12230553/11060642","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","24","39.0 N","8.0 E","N","","","","","407873.0","4163524.0","37.614212","-106.043865","07/14/2004 15:46","https://dwr.state.co.us/Tools/Structures/2013879", +"2013880","01CW0027 WELL NO 7","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0027","5538-F","12230553/11060642","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","23","39.0 N","8.0 E","N","","","","","406668.0","4163881.0","37.617308","-106.057562","07/14/2004 15:47","https://dwr.state.co.us/Tools/Structures/2013880", +"2013881","01CW0027 WELL NO 7-A","JDS #2 FIRE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0027","49486-F, 49486-F-R","12230553/11060642, GP12-4928","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NE","24","39.0 N","8.0 E","N","","","","","407501.0","4163801.0","37.616671","-106.048114","07/14/2004 15:59","https://dwr.state.co.us/Tools/Structures/2013881", +"2013882","01CW0027 WELL NO 8-R","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0027","6858-F-R","11060533/11060622","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","24","39.0 N","8.0 E","N","","","","","407870.0","4162729.0","37.607047","-106.043799","07/14/2004 15:50","https://dwr.state.co.us/Tools/Structures/2013882", +"2013884","99CW025 WELL NO 2A","J.BRADLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0025","23707-F, 33257-MH, 77861-F","18-04852-08","BEIRIGER PROPERTIES LLC (BEIRIGER, JAMES); BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","31","40.0 N","7.0 E","N","","","","","389370.0","4170128.0","37.671682","-106.254473","07/21/2011 10:53","https://dwr.state.co.us/Tools/Structures/2013884", +"2013886","02CW0008 WELL NO 3S","GWF #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0008","32002-F","09061922/10062860","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","SE","9","39.0 N","8.0 E","N","","","","","403099.0","4166148.0","37.637368","-106.098296","01/19/2006 15:11","https://dwr.state.co.us/Tools/Structures/2013886", +"2013887","04CW0012 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0012","21717-F","12230557/09060751","LOBO FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","32","40.0 N","9.0 E","N","","","","","410408.0","4169162.0","37.665272","-106.015838","09/29/2005 16:26","https://dwr.state.co.us/Tools/Structures/2013887", +"2013888","04CW0012 WELL NO 2","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0012","17142-F","09062718/10060157","LOBO FARM LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","32","40.0 N","9.0 E","N","","","","","410420.0","4169954.0","37.672411","-106.015799","09/29/2005 16:33","https://dwr.state.co.us/Tools/Structures/2013888", +"2013890","03CW0024 WELL NO 2","CORLETTE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0024","22473-F","11060508/11060667","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","11","40.0 N","7.0 E","N","","","","","396741.0","4176498.0","37.729944","-106.171812","10/10/2005 13:01","https://dwr.state.co.us/Tools/Structures/2013890", +"2013891","03CW0019 WELL NO 1R","EAST MULLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0019","823-R-R","19-02620-08","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NE","10","39.0 N","8.0 E","N","","","","","404713.0","4167072.0","37.645864","-106.080127","10/13/2005 17:05","https://dwr.state.co.us/Tools/Structures/2013891", +"2013892","03CW0027 WELL NO 3R","FIELD 2 S CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0027","10662-R-R","09062786/10060074","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NE","7","39.0 N","9.0 E","N","","","","","409664.0","4166740.0","37.643372","-106.023972","01/19/2006 15:12","https://dwr.state.co.us/Tools/Structures/2013892", +"2013893","03CW0027 WELL NO 10R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0027","500-R-R","05061459/05061496","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","6","39.0 N","9.0 E","N","","","","","409558.0","4167565.0","37.650797","-106.025276","01/19/2006 15:11","https://dwr.state.co.us/Tools/Structures/2013893", +"2013895","03CW0028 WELL NO 3R","SOUTH BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0028","14155-R-R","09061954/09061976","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","32","40.0 N","8.0 E","N","","","","","400683.0","4169224.0","37.664830","-106.126093","01/19/2006 15:12","https://dwr.state.co.us/Tools/Structures/2013895", +"2013896","04CW0023 WELL NO 5S","#8 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0023","51613-F","09060210/09060243","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","29","40.0 N","10.0 E","N","","","","","420021.0","4171541.0","37.687601","-105.907116","01/19/2006 15:12","https://dwr.state.co.us/Tools/Structures/2013896", +"2013905","07CW35 WELL 4A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0035","24379-F","09061289/09061401","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","11","40.0 N","10.0 E","N","","","","","424915.0","4176301.0","37.730913","-105.852106","01/26/2026 13:22","https://dwr.state.co.us/Tools/Structures/2013905", +"2013907","PERMIT 11617-R-R","2008943 ORGINALL WELL NOW DOMESTIC 122054--A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","11617-R-R","15-08531-8","DAVIS, STEVEN & KAREN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","10","40.0 N","8.0 E","N","","","","","404042.0","4176427.0","37.730099","-106.088963","03/14/2008 10:31","https://dwr.state.co.us/Tools/Structures/2013907", +"2013909","PERMIT 43384 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","43384-F","GP12-3932- PIVOT","BROWN, MARK","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","9","39.0 N","10.0 E","N","","","","","422690.0","4165898.0","37.636973","-105.876250","05/23/2007 16:35","https://dwr.state.co.us/Tools/Structures/2013909", +"2013912","PERMIT 4786 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","4786-F","03241862/07242525","BOWSHER FARMS LLC (MIX, GARY)","RGWCD SD1","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","15","40.0 N","8.0 E","N","","","","","403601.0","4173850.0","37.706829","-106.093626","02/06/2026 13:15","https://dwr.state.co.us/Tools/Structures/2013912", +"2013913","PERMIT 24069 F"," #25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","24069-F","05081934/100730","B KIRSCHENMANN HOLDINGS (KIRSCHENMANN, BRIAN); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","1","40.0 N","8.0 E","N","","","","","407305.0","4178005.0","37.744656","-106.052141","06/05/2007 13:14","https://dwr.state.co.us/Tools/Structures/2013913", +"2013914","PERMIT 22525 F","NEPTUNE 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22525-F","05062226/05062211","CHRISTENSEN, ROGER; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","2","40.0 N","8.0 E","N","","","","","406490.0","4177220.0","37.737499","-106.061289","06/05/2007 13:16","https://dwr.state.co.us/Tools/Structures/2013914", +"2013915","2006CW027 WELL NO 2A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0027","23079-F","05062238/05062201","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","12","40.0 N","8.0 E","N","","","","","407281.0","4176389.0","37.730090","-106.052207","08/01/2008 15:46","https://dwr.state.co.us/Tools/Structures/2013915", +"2013916","02CW0006 WELL NO. 1R5","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0006","65266-F","05060237/05060262","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","26","41.0 N","8.0 E","N","","","","","406499.0","4181255.0","37.773862","-106.061707","02/14/2007 12:54","https://dwr.state.co.us/Tools/Structures/2013916", +"2013925","PERMIT 44131 F","44131 F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44131-F","GP12-3996-8","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","21","40.0 N","6.0 E","N","","","","","383739.0","4173460.0","37.701010","-106.318841","07/11/2007 14:34","https://dwr.state.co.us/Tools/Structures/2013925", +"2013927","07CW33 WELL NO GREENHOUSE 2","MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0033","50414-F, 50414-F","01201385/01201335, 24-02229","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","20","39.0 N","9.0 E","N","","","","","410712.0","4163111.0","37.610770","-106.011651","05/15/2012 14:54","https://dwr.state.co.us/Tools/Structures/2013927", +"2013928","PERMIT 44610 F","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44610-F","10061882/10062078","ENSZ, DARWIN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","22","40.0 N","6.0 E","N","","","","","384534.0","4173452.0","37.701039","-106.309824","07/10/2007 14:49","https://dwr.state.co.us/Tools/Structures/2013928", +"2013929","90CW005 WELL NO. 1R","49 PIVOT WELL, REPLACED 2010294","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0005","14526-F-R","08061975/08062017","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","32","41.0 N","8.0 E","N","","","","","401602.0","4179690.0","37.759245","-106.117090","12/06/2013 12:38","https://dwr.state.co.us/Tools/Structures/2013929", +"2013931","2006CW031 WELL NO 2A","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0031","20717-F","04061984/05201407","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","1","40.0 N","7.0 E","N","","","","","397560.0","4177298.0","37.737245","-106.162632","08/01/2008 12:49","https://dwr.state.co.us/Tools/Structures/2013931", +"2013932","PERMIT 36603 F","PHILLIPS PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","36603-F","12061228/12061356","NICKEL, ROYCE; PHILLIPS, VICKY M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","1","40.0 N","7.0 E","N","","","","","397584.0","4178074.0","37.744241","-106.162469","07/10/2007 14:11","https://dwr.state.co.us/Tools/Structures/2013932", +"2013937","PERMIT 17335 RF","FIELD #11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","17335-F-R","60603170322","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","24","40.0 N","9.0 E","N","","","","","417809.0","4172402.0","37.695165","-105.932298","10/02/2007 14:55","https://dwr.state.co.us/Tools/Structures/2013937", +"2013938","W3441 WELL NO 6A","19327 FR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3441","19327-F, 19327-F-R","03123480/03123485","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","14","39.0 N","9.0 E","N","","","","","415897.0","4165195.0","37.630040","-105.953152","08/12/2008 09:25","https://dwr.state.co.us/Tools/Structures/2013938", +"2013941","02CW0036 CENTER REDI-MIX PIT","AUGMENTED GRAVEL PIT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","52936-F","6543210","MOUNTAIN VISTA GRAVEL PRODUCTS (ROBINS, DANIEL)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","40.0 N","7.0 E","N","","","","","396422.0","4177765.0","37.741326","-106.175612","09/04/2024 10:20","https://dwr.state.co.us/Tools/Structures/2013941", +"2013943","PERMIT 48314 F","FIELD #32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","48314-F","15-09405-8, 18-07860","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","26","40.0 N","10.0 E","N","","","","","424984.0","4170585.0","37.679404","-105.850734","10/02/2007 11:06","https://dwr.state.co.us/Tools/Structures/2013943", +"2013944","PERMIT 34848-F-","LAMBERT WAREHOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","34848-F","06-6-2110, 8425757","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","3","39.0 N","10.0 E","N","","","","","423251.0","4168355.0","37.659163","-105.870151","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013944", +"2013946","PERMIT 48163-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","48163-F","07-8-1551","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","4","39.0 N","10.0 E","N","","","","","421748.0","4167084.0","37.647582","-105.887053","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013946", +"2013947","PERMIT 28261-F-","EAST PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0020","28261-F","25-04987-06","BURRIS, SHANE S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","4","39.0 N","10.0 E","N","","","","","422720.0","4168271.0","37.658362","-105.876161","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013947", +"2013948","PERMIT 53245-F-","COLE'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","53245-F","24-03757-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","5","39.0 N","10.0 E","N","","","","","420642.0","4167818.0","37.654102","-105.899668","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013948", +"2013949","PERMIT 25358-F","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0006","25358-F","11060530/11060635","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","40.0 N","7.0 E","N","","","","","395081.0","4174103.0","37.708173","-106.190300","12/31/2007 11:41","https://dwr.state.co.us/Tools/Structures/2013949", +"2013950","11CW0018 WELL NO 3R","B-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0018, 23CW0003","3565-F-R, 88129-F, 89947-F","012017002842/09060242","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","6","40.0 N","10.0 E","N","","","","","419418.0","4177962.0","37.745415","-105.914666","11/05/2025 14:23","https://dwr.state.co.us/Tools/Structures/2013950", +"2013952","PERMIT 43330-F-","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43330-F","09062747/05062200","BEIRIGER, TRAVIS P.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","7","40.0 N","10.0 E","N","","","","","419394.0","4175410.0","37.722414","-105.914655","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013952", +"2013954","PERMIT 46318-F-","#29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46318-F","05062254","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","7","40.0 N","10.0 E","N","","","","","418638.0","4176570.0","37.732801","-105.923362","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013954", +"2013957","PERMIT 30381-F-","EAST PUMP TERRYS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","30381-F","06-6-1978","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","10","40.0 N","10.0 E","N","","","","","424067.0","4175969.0","37.727851","-105.861694","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013957", +"2013958","22CW0006 WELL NO 2R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0006","34808-F","11060530/11060635","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","15","40.0 N","7.0 E","N","","","","","395089.0","4173998.0","37.707228","-106.190195","11/05/2025 13:25","https://dwr.state.co.us/Tools/Structures/2013958", +"2013959","PERMIT 44616-F","FIELD #30","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44616-F","14-11226","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","20","40.0 N","10.0 E","N","","","","","420191.0","4173183.0","37.702414","-105.905368","01/09/2008 09:33","https://dwr.state.co.us/Tools/Structures/2013959", +"2013960","2007CW0035 WELL 3A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0035","20575-F","05083029/09061380","CHILES FARMS; CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","11","40.0 N","10.0 E","N","","","","","424897.9","4175666.0","37.725189","-105.852234","08/14/2013 16:07","https://dwr.state.co.us/Tools/Structures/2013960", +"2013962","2007CW35 WELL NO 02","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0035","13464-F-R, 43608-F","","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2017","3","20","ALAMOSA","","","","NE","NW","12","40.0 N","10.0 E","N","","","","","426656.0","4176616.0","37.733893","-105.832382","11/13/2023 15:35","https://dwr.state.co.us/Tools/Structures/2013962", +"2013965","PERMIT 39821-F-","FIELD #41","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","39821-F","15-06397-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","14","40.0 N","10.0 E","N","","","","","425829.0","4173818.0","37.708610","-105.841482","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013965", +"2013966","PERMIT 57266-F-","FIELD #68","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57266-F","25-01749","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","40.0 N","10.0 E","N","","","","","420691.0","4174490.0","37.714236","-105.899839","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013966", +"2013967","PERMIT 43385-F-","MYERS 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43385-F","11060544/11060625","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","36","41.0 N","9.0 E","N","","","","","417031.0","4178973.0","37.754313","-105.941872","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013967", +"2013969","PERMIT 51102-F-","MYERS 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","98262-VE, 51102-F","11060501/062019001002","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","36","41.0 N","9.0 E","N","","","","","417546.0","4178440.0","37.749556","-105.935966","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013969", +"2013970","PERMIT 46549-F-","MYERS 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46549-F","11060501/062019001002","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","36","41.0 N","9.0 E","N","","","","","417832.0","4178964.0","37.754304","-105.932779","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013970", +"2013974","PERMIT 47202-F-","GARRETT FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47202-F","05-8-3474","SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","29","41.0 N","10.0 E","N","","","","","420069.0","4180813.0","37.771166","-105.907591","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013974", +"2013975","2007CW32 NO 3-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0032, 14CW3024, 19CW0004","15442-F-R","10061935/10062052","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","28","39.0 N","9.0 E","N","","","","","412699.0","4161866.0","37.599741","-105.988993","10/11/2019 15:57","https://dwr.state.co.us/Tools/Structures/2013975", +"2013977","PERMIT 21064FR","FIELD #68","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","21064-F-R","25-01749","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","17","40.0 N","10.0 E","N","","","","","421264.0","4174499.0","37.714367","-105.893340","03/19/2008 08:51","https://dwr.state.co.us/Tools/Structures/2013977", +"2013982","PERMIT 10075-RR","FIELD #25, REPLACEMENT FOR 2010558","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","10075-R-R","15-04671-8, 24-07179-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","23","40.0 N","9.0 E","N","","","","","415966.0","4172343.0","37.694466","-105.953194","03/19/2008 08:51","https://dwr.state.co.us/Tools/Structures/2013982", +"2013983","PERMIT 16175-F","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","16175-F","22-02716-08","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","40.0 N","8.0 E","N","","","","","401192.0","4174853.0","37.715611","-106.121086","01/02/2008 09:48","https://dwr.state.co.us/Tools/Structures/2013983", +"2013986","06CW32 WELL NO 1-2S","MS3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0032","35351-F","082017002188, 100113, 18-06835-08","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","27","39.0 N","9.0 E","N","","","","","414309.0","4161858.0","37.599820","-105.970756","03/25/2013 17:04","https://dwr.state.co.us/Tools/Structures/2013986", +"2013994","14CW3001 WELL NO 4-A","GRANDADS RAINCAT #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3001, 21CW0023","21138-F, 58596-F, 86838-F","10061940/10062029","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","2","39.0 N","7.0 E","N","","","","","396590.0","4167788.0","37.651437","-106.172288","09/22/2020 15:31","https://dwr.state.co.us/Tools/Structures/2013994", +"2013995","14CW3001 WELL NO 2-A","TOBE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3001","22180-F","09062789/10060083","BOND, RONALD W.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","2","39.0 N","7.0 E","N","","","","","395805.0","4167782.0","37.651294","-106.181185","09/22/2020 15:32","https://dwr.state.co.us/Tools/Structures/2013995", +"2013996","PERMIT 20380-F-","GJELLUM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","20380-F","10063574/10063696-100515, 10063624/10063635-100527","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","4","39.0 N","7.0 E","N","","","","","393368.0","4167769.0","37.650897","-106.208804","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013996", +"2013997","PERMIT 22409-F-R","N DRAKE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22409-F, 22409-F-R, 22409-F-R","22-08336-8","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; ROCKWATER LLC (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","4","39.0 N","7.0 E","N","","","","","392573.0","4168398.0","37.656473","-106.217907","12/20/2007 13:54","https://dwr.state.co.us/Tools/Structures/2013997", +"2013998","PERMIT 23362-F","S DRAKE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23362-F","06-8-3511","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; ROCKWATER LLC (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","4","39.0 N","7.0 E","N","","","","","392582.0","4167772.0","37.650833","-106.217712","12/20/2007 13:52","https://dwr.state.co.us/Tools/Structures/2013998", +"2014000","PERMIT 21018-F-","FIELD 8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21018-F","10063515/10063728-100475","HART, JAMES N. & MARIA L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","9","39.0 N","7.0 E","N","","","","","393366.0","4166955.0","37.643562","-106.208707","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014000", +"2014001","21CW0006 WELL NO. 1R","FIELD #2, PERMIT 504-R-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0006","504-R-R","12061256/12061322","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); SJ FARMS TRUST (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","10","39.0 N","7.0 E","N","","","","","394976.0","4166158.0","37.636565","-106.190347","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2014001", +"2014002","PERMIT 24384-F-","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24384-F","10060712/10061042","ELLIOTT, THAD R. & DEANNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","39.0 N","7.0 E","N","","","","","397374.0","4166942.0","37.643901","-106.163284","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014002", +"2014003","PERMIT 1889-R-F","REPLACES 2009864","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","1889-R-R","100742/12061411","HART JR, HOWARD L. & CYNTHIA J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","14","39.0 N","7.0 E","N","","","","","395786.0","4165361.0","37.629475","-106.181055","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014003", +"2014004","PERMIT 43746-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43746-F","11060557/11060656","SELF, CLINTON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","14","39.0 N","7.0 E","N","","","","","396541.0","4164529.0","37.622063","-106.172382","01/13/2014 11:57","https://dwr.state.co.us/Tools/Structures/2014004", +"2014005","PERMIT 1890-R-R","H&H #3, REPLACES 2009866","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","1890-R-R","12061225/12061388","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); SJ FARMS TRUST (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","15","39.0 N","7.0 E","N","","","","","394972.0","4165744.0","37.632834","-106.190333","06/14/2016 14:48","https://dwr.state.co.us/Tools/Structures/2014005", +"2014012","2004CW034 WELL 3AA","5 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0034","63433-F","07-8-1051","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","2","39.0 N","8.0 E","N","","","","","405951.0","4167336.0","37.648371","-106.066130","07/23/2021 15:32","https://dwr.state.co.us/Tools/Structures/2014012", +"2014013","PERMIT 57268-F","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57268-F","23-03413-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","35","40.0 N","10.0 E","N","","","","","425402.0","4169795.0","37.672319","-105.845913","01/07/2008 11:39","https://dwr.state.co.us/Tools/Structures/2014013", +"2014014","PERMIT 57269-F","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57269-F","23-03413-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","35","40.0 N","10.0 E","N","","","","","426195.0","4169790.0","37.672338","-105.836922","03/19/2008 08:52","https://dwr.state.co.us/Tools/Structures/2014014", +"2014015","PERMIT 159-R-","BECK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","159-R","19-08127-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","39.0 N","8.0 E","N","","","","","405944.0","4168405.0","37.658004","-106.066347","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014015", +"2014016","PERMIT 57270-F","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57270-F","23-03413-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","35","40.0 N","10.0 E","N","","","","","425801.0","4169967.0","37.673901","-105.841407","03/19/2008 08:52","https://dwr.state.co.us/Tools/Structures/2014016", +"2014017","22CW3046 WELL NO 1A","HI-LAND POTATO NE/NE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW3046","43118-F","08061994/08062032","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","4","39.0 N","8.0 E","N","","","","","402620.0","4168719.0","37.660487","-106.104067","10/09/2024 13:01","https://dwr.state.co.us/Tools/Structures/2014017", +"2014018","93CW30 WELL NO 3-R","NEED TO HAVE PERMIT 5162-R-F, RAYS QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","13558-R-R","05062234/05062215","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","5","39.0 N","8.0 E","N","","","","","400724.0","4168469.0","37.658031","-106.125526","01/31/2019 13:58","https://dwr.state.co.us/Tools/Structures/2014018", +"2014019","PERMIT 17722 F","PERMIT 17722 F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","17722-F","062013000092","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","8","39.0 N","8.0 E","N","","","","","401486.0","4166067.0","37.636466","-106.116564","07/08/2010 10:11","https://dwr.state.co.us/Tools/Structures/2014019", +"2014020","2009CW15 WELL NO 1/9-A","STORAGE ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0015","47194-F","3578377, 3789047","ROGERS BROTHERS FARMS (ROGERS, GREGG & SANDRA)","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","SE","SE","5","40.0 N","10.0 E","N","","","","","421430.0","4176839.0","37.735470","-105.891709","08/21/2013 15:51","https://dwr.state.co.us/Tools/Structures/2014020", +"2014021","07CW08 WELL NO 1-A","JDS #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0008","20465-F","100262/10062017","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE; JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","8","39.0 N","9.0 E","N","","","","","411121.0","4166714.0","37.643280","-106.007456","06/10/2010 11:42","https://dwr.state.co.us/Tools/Structures/2014021", +"2014022","PERMIT 57196-F-","#8 AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57196-F","12062533/12062742","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","10","39.0 N","9.0 E","N","","","","","413351.0","4165490.0","37.632462","-105.982037","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014022", +"2014023","PERMIT 23053-F-","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23053-F","03061819/03061822","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","11","39.0 N","9.0 E","N","","","","","415045.0","4165877.0","37.636108","-105.962886","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014023", +"2014024","PERMIT 23454-F-","FIELD #24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23454-F, 23454-F-R","18-06836-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","12","39.0 N","9.0 E","N","","","","","416905.0","4165704.0","37.634719","-105.941788","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014024", +"2014025","PERMIT 38397-F-","FIELD #23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38397-F","16-09493, 20-04309","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","12","39.0 N","9.0 E","N","","","","","417672.0","4166096.0","37.638321","-105.933140","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014025", +"2014026","20CW0025 WELL NO. 3S","WEDEL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0025","85297-F","062015002419","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","14","39.0 N","9.0 E","N","","","","","415895.0","4164139.0","37.620523","-105.953054","11/05/2025 13:32","https://dwr.state.co.us/Tools/Structures/2014026", +"2014027","07CW18 WELL NO 2-S","MAP 18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0018","47907-F","10062696/10062857","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","14","39.0 N","9.0 E","N","","","","","415191.0","4164855.0","37.626911","-105.961113","06/18/2010 12:50","https://dwr.state.co.us/Tools/Structures/2014027", +"2014028","19CW0004 WELL NO. 6-S","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","19CW0004","","23-02652-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","21","39.0 N","9.0 E","N","","","","","411909.0","4162740.0","37.607542","-105.998047","12/01/2022 14:23","https://dwr.state.co.us/Tools/Structures/2014028", +"2014029","PERMIT 36669-F","POTATO STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","36669-F","6197185","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","22","40.0 N","10.0 E","N","","","","","423779.0","4172007.0","37.692121","-105.864547","01/12/2024 13:12","https://dwr.state.co.us/Tools/Structures/2014029", +"2014030","PERMIT 17029-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","17029-F","09062753/10060114","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","17","39.0 N","8.0 E","N","","","","","400627.0","4164462.0","37.621910","-106.126080","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014030", +"2014032","PERMIT 743-R-R","HOLLAND #23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","743-R-R","10062714/10062863","GRIMMWAY ENTERPRISES INC; GRIMMWAY ENTERPRISES INC (KERRICK, CLINTON); MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","21","39.0 N","8.0 E","N","","","","","402636.0","4163825.0","37.616385","-106.103233","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014032", +"2014033","2008CW23 WELL NO 4-A","JDS #8, PERMIT 24120-F-","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0023","24120-F","11060539/11060628-100604","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","24","39.0 N","8.0 E","N","","","","","407080.0","4162746.0","37.607121","-106.052750","06/18/2013 16:35","https://dwr.state.co.us/Tools/Structures/2014033", +"2014034","PERMIT 34970-F-R","JDS #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","34970-F, 34970-F-R","11060533/11060622","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","24","39.0 N","8.0 E","N","","","","","407489.0","4162976.0","37.609235","-106.048146","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014034", +"2014035","2007CW31 WELL NO 2/3-AA","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0031, 21CW0023","44056-F, 90517-F","20-05866","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","25","39.0 N","8.0 E","N","","","","","408224.0","4162022.0","37.600711","-106.039700","09/11/2013 11:12","https://dwr.state.co.us/Tools/Structures/2014035", +"2014036","2007CW31 WELL NO 2/3-A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0031, 21CW0023","44057-F, 90516-F","12061214/12061370","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","25","39.0 N","8.0 E","N","","","","","407498.0","4161915.0","37.599674","-106.047910","09/11/2013 10:49","https://dwr.state.co.us/Tools/Structures/2014036", +"2014037","2007CW31 WELL NO 3-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0031, 21CW0023","22423-F, 90518-F","12061214/12061370","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","25","39.0 N","8.0 E","N","","","","","407276.0","4161732.0","37.598002","-106.050401","09/11/2013 10:47","https://dwr.state.co.us/Tools/Structures/2014037", +"2014038","PERMIT 47204-F","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","47204-F","3870442","CHILES, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","10","40.0 N","10.0 E","N","","","","","424616.0","4175278.0","37.721669","-105.855393","01/16/2024 17:43","https://dwr.state.co.us/Tools/Structures/2014038", +"2014039","04CW0001 WELL1R","TRACK WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0001","221195-, 63390-F","052019003161/101051","ADAMS, CLINT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","2","39.0 N","9.0 E","N","","","","","416304.0","4167099.0","37.647237","-105.948759","01/06/2026 09:19","https://dwr.state.co.us/Tools/Structures/2014039", +"2014041","07CW10 WELL NO 2-A","#34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0010","34971-F","10060733/10061040-100187","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","2","39.0 N","9.0 E","N","","","","","415258.0","4168492.0","37.659695","-105.960776","06/10/2010 12:11","https://dwr.state.co.us/Tools/Structures/2014041", +"2014042","10CW0023 MOSCA HIGH SCHOOL WELL NO 1","IRRIG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","10CW0023","22626-F, 84333-F","8832664","WHITE ROCK PROPERTIES, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","4","39.0 N","10.0 E","N","","","","","422643.0","4167510.0","37.651497","-105.876954","08/10/2022 14:25","https://dwr.state.co.us/Tools/Structures/2014042", +"2014043","PERMIT 3107-F-R","#25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","3107-F-R","12061180/12061425","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","5","39.0 N","9.0 E","N","","","","","410771.0","4167435.0","37.649744","-106.011511","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014043", +"2014044","2007CW32 WELL NO 5","#24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","10115-R, 10115-R-R","12061170/12061438","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","39.0 N","9.0 E","N","","","","","410351.0","4167563.0","37.650857","-106.016287","10/11/2019 16:27","https://dwr.state.co.us/Tools/Structures/2014044", +"2014047","20CW0006 WELL NO. 1-SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0006","28263-F","10063527/10063711","CATALANO, DWAYNE","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","23","39.0 N","9.0 E","N","","","","","414918.0","4162673.0","37.607222","-105.963952","12/01/2022 14:18","https://dwr.state.co.us/Tools/Structures/2014047", +"2014048","06CW32 WELL NO 1-SS","NORTH AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0032","28281-F","10060650/10061115-100110, 17-10635-08, 18-11220-06","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","23","39.0 N","9.0 E","N","","","","","416004.0","4163649.0","37.616117","-105.951762","03/22/2013 17:24","https://dwr.state.co.us/Tools/Structures/2014048", +"2014049","06CW32 WELL NO 1-S","SOUTH AUX","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0032","28280-F","10060650/10061115-100110, 17-10635-08, 18-11220-06","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","23","39.0 N","9.0 E","N","","","","","415986.0","4163276.0","37.612754","-105.951923","03/22/2013 17:15","https://dwr.state.co.us/Tools/Structures/2014049", +"2014050","PERMIT 47983-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47983-F","06123272/092017001243","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","25","39.0 N","9.0 E","N","","","","","416796.0","4161392.0","37.595849","-105.942533","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014050", +"2014051","PERMIT 48855-F-","FIELD 2 - UNCONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","48855-F","09062765/10060085, 12204451/10060096","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","31","39.0 N","10.0 E","N","","","","","418921.0","4160498.0","37.587981","-105.918365","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014051", +"2014052","PERMIT 43383-F-","FIELD 2 - UNCONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43383-F","09062765/10060085, 12204451/10060096","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","31","39.0 N","10.0 E","N","","","","","419060.0","4160063.0","37.584073","-105.916742","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014052", +"2014054","PERMIT 44378-F-","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","44378-F","","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NW","SE","25","39.0 N","9.0 E","N","","","","","417419.0","4161316.0","37.595220","-105.935468","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014054", +"2014055","06CW32 WELL NO 3-R","MS5 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0032","20246-R-R","10060651/10061106, 22-02299-08","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","30","39.0 N","9.0 E","N","","","","","409492.0","4161916.0","37.599881","-106.025324","03/25/2013 17:27","https://dwr.state.co.us/Tools/Structures/2014055", +"2014057","22CW0008 WELL NO 1A","JDS #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW0008","18761-F, 89653-F","11060484/11060675","ALTITUDE AG (HATHAWAY, WILL); JDS FARMS LLC (HARVEY, CHRISTY L. & DANIEL D.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","30","39.0 N","9.0 E","N","","","","","408282.0","4161475.0","37.595787","-106.038974","11/05/2025 13:27","https://dwr.state.co.us/Tools/Structures/2014057", +"2014058","06CW32 WELL NO 1-A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0032","32007-F","19-04144-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","33","39.0 N","9.0 E","N","","","","","411963.0","4160239.0","37.585008","-105.997134","03/25/2013 17:13","https://dwr.state.co.us/Tools/Structures/2014058", +"2014059","06CW32 WELL NO 2-A","# 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0032","22682-F","10060687/10061072","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","34","39.0 N","9.0 E","N","","","","","413496.0","4159943.0","37.582486","-105.979738","03/25/2013 17:22","https://dwr.state.co.us/Tools/Structures/2014059", +"2014060","PERMIT 21407-F-","ES8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21407-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2022","3","20","ALAMOSA","","","","NW","NE","36","39.0 N","9.0 E","N","","","","","417580.0","4160215.0","37.585312","-105.933520","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014060", +"2014061","PERMIT 29268-F","#29 STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","29268-F","232081405","MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","7","40.0 N","10.0 E","N","","","","","418240.0","4176040.0","37.727989","-105.927819","12/15/2023 14:44","https://dwr.state.co.us/Tools/Structures/2014061", +"2014080","PERMIT 35237-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","35237-F","11061455/11061665","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","5","38.0 N","10.0 E","N","","","","","420411.0","4157810.0","37.563886","-105.901198","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014080", +"2014081","2008CW20 WELL NO 18-SS","#4, PERMIT 42772-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","42772-F","02082202/02082226","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","38.0 N","10.0 E","N","","","","","420571.0","4158238.0","37.567757","-105.899433","08/13/2013 16:34","https://dwr.state.co.us/Tools/Structures/2014081", +"2014082","2008CW20 WELL NO 18-S","PERMIT 35228-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","35228-F","02082202/02082226","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","5","38.0 N","10.0 E","N","","","","","420691.0","4158456.0","37.569732","-105.898098","06/18/2013 16:10","https://dwr.state.co.us/Tools/Structures/2014082", +"2014083","2008CW20 WELL NO 20-S","PERMIT 43375-F-","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","43375-F","15-11638-8","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","38.0 N","10.0 E","N","","","","","419668.0","4158070.0","37.566165","-105.909638","08/14/2013 11:44","https://dwr.state.co.us/Tools/Structures/2014083", +"2014084","2008CW20 WELL NO 20-A","PERMIT 24945-F-","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","24945-F","15-11638-8","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","38.0 N","10.0 E","N","","","","","419805.0","4157803.0","37.563770","-105.908058","08/14/2013 11:37","https://dwr.state.co.us/Tools/Structures/2014084", +"2014085","2008CW20 WELL NO 22-R","#7, PERMIT 23368-R-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","23368-F-R","15-11638-8","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","5","38.0 N","10.0 E","N","","","","","419981.0","4157897.0","37.564633","-105.906076","08/14/2013 13:09","https://dwr.state.co.us/Tools/Structures/2014085", +"2014086","2008CW20 WELL NO 16-S","PERMIT 25362-F-","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","25362-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","NW","5","38.0 N","10.0 E","N","","","","","420009.0","4158771.0","37.572512","-105.905854","08/13/2013 16:48","https://dwr.state.co.us/Tools/Structures/2014086", +"2014087","2008CW20 WELL NO 16-SS","#3, PERMIT 43377-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0020","43377-F","","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SE","NW","5","38.0 N","10.0 E","N","","","","","419879.0","4158203.0","37.567382","-105.907264","08/13/2013 16:50","https://dwr.state.co.us/Tools/Structures/2014087", +"2014090","PERMIT 33128-F","500'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","33128-F","232074102","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","19","40.0 N","10.0 E","N","","","","","418209.0","4172759.0","37.698418","-105.927802","01/17/2024 16:16","https://dwr.state.co.us/Tools/Structures/2014090", +"2014100","PERMIT 44134-F","600'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","44134-F","6102947","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","26","40.0 N","10.0 E","N","","","","","424639.0","4170399.0","37.677700","-105.854627","01/17/2024 16:06","https://dwr.state.co.us/Tools/Structures/2014100", +"2014102","PERMIT 46013-F","CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","46013-F","10390720, 22229975","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","18","40.0 N","9.0 E","N","","","","","408546.0","4173622.0","37.705282","-106.037506","01/16/2024 17:34","https://dwr.state.co.us/Tools/Structures/2014102", +"2014103","07CW08 WELL NO 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0008","18249-F-R","100262/10062017","ALTITUDE AG (HATHAWAY, WILL); ENTZ, LOUIE; JDS FARMS, LLC (HARVEY, CHRISTY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","8","39.0 N","9.0 E","N","","","","","410764.0","4166901.0","37.644931","-106.011525","06/10/2010 11:28","https://dwr.state.co.us/Tools/Structures/2014103", +"2014105","2007CW32 WELL NO 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","43791-F","11061709/11061746","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","28","39.0 N","9.0 E","N","","","","","411526.0","4160913.0","37.591040","-106.002164","10/11/2019 15:39","https://dwr.state.co.us/Tools/Structures/2014105", +"2014106","07CW0032 WELL NO 01-R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0032, 19CW0004","41186-F","11061709/11061746","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","28","39.0 N","9.0 E","N","","","","","411911.0","4161088.0","37.592654","-105.997825","08/12/2022 13:54","https://dwr.state.co.us/Tools/Structures/2014106", +"2014107","PERMIT 30337-F-","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","30337-F","","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","NE","SW","31","39.0 N","10.0 E","N","","","","","418444.0","4159569.0","37.579567","-105.923663","01/09/2008 10:06","https://dwr.state.co.us/Tools/Structures/2014107", +"2014110","20CW0020 WELL NO. 1-AR","HWY STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0020","","202118616","MIX, ROGER & ROSALIE; SHERREL MIX AND LINDA J. MIX REVOCABLE TRUST","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","13","40.0 N","7.0 E","N","","","","","398454.0","4173748.0","37.705354","-106.151992","12/11/2023 17:23","https://dwr.state.co.us/Tools/Structures/2014110", +"2014112","18CW0008 WELL NO 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW0008","166476-, 89072-F","22037051","KLECKER RANCH, INC. ","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","14","39.0 N","8.0 E","N","","","","","406630.0","4164831.0","37.625865","-106.058114","01/02/2026 15:03","https://dwr.state.co.us/Tools/Structures/2014112", +"2014116","PERMIT 26335-F-","ES8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","26335-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2022","3","20","ALAMOSA","","","","NW","NE","36","39.0 N","9.0 E","N","","","","","417513.0","4160396.0","37.586937","-105.934299","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014116", +"2014117","PERMIT 26336-F-","ES8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","26336-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2022","3","20","ALAMOSA","","","","SW","NE","36","39.0 N","9.0 E","N","","","","","417487.0","4160188.0","37.585060","-105.934570","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014117", +"2014118","PERMIT 21408-F-","SS6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21408-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","NW","SW","36","39.0 N","9.0 E","N","","","","","416778.0","4159432.0","37.578183","-105.942514","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014118", +"2014119","PERMIT 24781-F-","SS6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24781-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","NW","SW","36","39.0 N","9.0 E","N","","","","","416770.0","4159619.0","37.579867","-105.942625","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014119", +"2014120","PERMIT 24780-F-","NS7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24780-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2022","3","20","ALAMOSA","","","","NW","NW","36","39.0 N","9.0 E","N","","","","","416752.0","4160413.0","37.587022","-105.942920","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014120", +"2014121","PERMIT 21406-F-","NS7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21406-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2022","3","20","ALAMOSA","","","","NW","NW","36","39.0 N","9.0 E","N","","","","","416731.0","4160223.0","37.585307","-105.943136","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014121", +"2014122","PERMIT 48590-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","2827-F, 48590-F","14-10166","HONEYCUTT, JERRY & DAWN","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","36","39.0 N","9.0 E","N","","","","","417414.0","4159301.0","37.577060","-105.935297","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014122", +"2014124","PERMIT 57242-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57242-F","10061934/10062041","MATTHEWS, MICHAEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","9","40.0 N","7.0 E","N","","","","","393472.0","4176788.0","37.732183","-106.208944","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014124", +"2014125","PERMIT 11003-R-R","HOUSE QTR, REPLACES 2010117","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","11003-R-R","20-06967-08","HENNIGH, BARRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","12","40.0 N","7.0 E","N","","","","","398346.0","4176478.0","37.729944","-106.153598","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014125", +"2014126","2006CW031 WELL NO 2R","10 S/W10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0031","11164-R-R, 5594-F-R","05060252/05060279","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","13","40.0 N","7.0 E","N","","","","","397535.0","4174884.0","37.715489","-106.162575","08/01/2008 15:46","https://dwr.state.co.us/Tools/Structures/2014126", +"2014127","20CW0021 WELL NO. 1-AR","SHOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0021","","222052721","MIX, LINDA; MIX, ROGER & ROSALIE","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","13","40.0 N","7.0 E","N","","","","","397781.0","4173686.0","37.704721","-106.159617","01/17/2024 08:53","https://dwr.state.co.us/Tools/Structures/2014127", +"2014128","PERMIT 56941-F-","W SCHMIDT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","56941-F","20-10216-08","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","15","40.0 N","7.0 E","N","","","","","395108.0","4174902.0","37.715376","-106.190109","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014128", +"2014129","07CW20 WELL NO 1-A","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0020","22137-F","23-03381-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","19","40.0 N","7.0 E","N","","","","","389377.0","4172590.0","37.693868","-106.254768","06/18/2010 14:06","https://dwr.state.co.us/Tools/Structures/2014129", +"2014130","07CW20 WELL NO 2","LOCKWOOD NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0020","17169-F, 17169-F-R","15-08891-8","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); JV FARMS TRUST (MCCULLOUGH, JASON)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","19","40.0 N","7.0 E","N","","","","","389426.0","4173378.0","37.700975","-106.254332","06/18/2010 14:13","https://dwr.state.co.us/Tools/Structures/2014130", +"2014131","PERMIT 17624-F-R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","17624-F, 17624-F-R","03-8-2610","BOTHELL, ERIC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","19","40.0 N","7.0 E","N","","","","","390183.0","4172862.0","37.696416","-106.245669","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014131", +"2014132","PERMIT 23577-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23577-F","06-8-3029","DICKEY, GARY & BRIGITTE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","20","40.0 N","7.0 E","N","","","","","391830.0","4172519.0","37.693521","-106.226940","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014132", +"2014134","PERMIT 55056-F-","CARPENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","55056-F","07060374/07060931","ENCE, MYRNA; HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","21","40.0 N","7.0 E","N","","","","","393461.0","4172346.0","37.692153","-106.208418","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014134", +"2014135","PERMIT 1051-R-R","4 MILE QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","1051-R-R","03241858/12212645","KYFFIN, TYLER P.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","21","40.0 N","7.0 E","N","","","","","392662.0","4173279.0","37.700468","-106.217617","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014135", +"2014136","PERMIT 16106-F-","9 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","16106-F","06-8-1225","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","24","40.0 N","7.0 E","N","","","","","397521.0","4173276.0","37.700997","-106.162508","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014136", +"2014137","2004CW029 WELL NO. 2R","W7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0029","6080-R-R","05060282/05060232","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","27","40.0 N","7.0 E","N","","","","","395264.0","4171255.0","37.682530","-106.187815","06/05/2008 11:27","https://dwr.state.co.us/Tools/Structures/2014137", +"2014138","PERMIT 49181-F","AUX @ REPLANT STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49181-F, 85302-F","07090152/05083069, 09061280/09061375, 18-05416-02","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2010","10/31/2025","3","20","ALAMOSA","","","","SW","SW","20","40.0 N","9.0 E","N","","","","","410161.0","4172023.0","37.691031","-106.018990","01/27/2022 09:20","https://dwr.state.co.us/Tools/Structures/2014138", +"2014139","PERMIT 42811-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42811-F","09-1392-6, 15-08239-8","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","12","40.0 N","8.0 E","N","","","","","408086.0","4176382.0","37.730108","-106.043073","04/15/2013 11:47","https://dwr.state.co.us/Tools/Structures/2014139", +"2014142","2006CW013 WELL NO 6R","CENTER #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0013","6032-R-R","03061795/05081899","LUCY TRUST (CROWDER, AMY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","35","40.0 N","7.0 E","N","","","","","396658.0","4170048.0","37.671811","-106.171838","07/31/2008 15:38","https://dwr.state.co.us/Tools/Structures/2014142", +"2014143","PERMIT 47824-F-","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47824-F","04060168/04060123","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","1","40.0 N","8.0 E","N","","","","","408094.0","4177194.0","37.737427","-106.043085","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014143", +"2014144","PERMIT 33069-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","33069-F","11-5809","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2012","10/31/2025","3","20","ALAMOSA","","","","NW","NE","3","39.0 N","10.0 E","N","","","","","424133.0","4168309.0","37.658822","-105.860147","03/19/2008 08:54","https://dwr.state.co.us/Tools/Structures/2014144", +"2014145","PERMIT 23382-F-","SPRINKLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23382-F","04060163/03241854","DAFERMO, RALPH; IDAHO PACIFIC CORP. COLORADO","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","4","40.0 N","8.0 E","N","","","","","403247.0","4178039.0","37.744542","-106.098198","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014145", +"2014147","22CW0023 WELL NO 3R","EAST QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW0023","11005-R-R","09061939/12061516","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","7","40.0 N","8.0 E","N","","","","","399174.0","4176468.0","37.729945","-106.144202","11/05/2025 13:25","https://dwr.state.co.us/Tools/Structures/2014147", +"2014148","PERMIT 43262-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43262-F","10242147/07242529","ELEVATION INC (WAGAR, JOSH); WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","10","40.0 N","8.0 E","N","","","","","404837.0","4175630.0","37.723000","-106.079839","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014148", +"2014150","PERMIT 42813-F-R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","97433-VE, 42813-F-R","22-02720-08","CARPENTER, CODY; CARPENTER, KENNETH L.; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","12","40.0 N","8.0 E","N","","","","","408063.0","4175603.0","37.723086","-106.043235","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014150", +"2014151","07CW29 WELL NO 3-A","GWYNNE - PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0029, 24CW3010","24558-F, 90652-F","04061997/04062009, 100921/12061335","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","13","40.0 N","8.0 E","N","","","","","407264.0","4174792.0","37.715697","-106.052197","06/18/2010 16:42","https://dwr.state.co.us/Tools/Structures/2014151", +"2014152","PERMIT 38457-F-","10M EQ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38457-F","100141/10061073","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","14","40.0 N","8.0 E","N","","","","","406444.0","4174821.0","37.715875","-106.061503","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014152", +"2014155","PERMIT 18066-F-","15 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","18066-F","06-8-4237","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","19","40.0 N","8.0 E","N","","","","","399125.0","4172458.0","37.693803","-106.144203","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014155", +"2014156","PERMIT 20388-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","20388-F","11061535/11061576, 12061227/12061321","HART, JAMES N. & MARIA L.","RGWCD SD1","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","4","39.0 N","7.0 E","N","","","","","393340.0","4168525.0","37.657707","-106.209231","03/19/2008 08:54","https://dwr.state.co.us/Tools/Structures/2014156", +"2014157","PERMIT 47919-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47919-F","07-8-1505, 10060695, GP10-1539-6 FULL PIV","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","15","39.0 N","10.0 E","N","","","","","423103.0","4164930.0","37.628284","-105.871468","11/03/2008 11:48","https://dwr.state.co.us/Tools/Structures/2014157", +"2014158","PERMIT 11360-R-R","#5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","11360-R-R","062014002069/11060680","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","21","40.0 N","8.0 E","N","","","","","402338.0","4172437.0","37.693962","-106.107762","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014158", +"2014160","2006CW028 WELL NO 2A","N 7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0028","20136-F","03062362","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","25","40.0 N","8.0 E","N","","","","","407987.0","4170765.0","37.679479","-106.043486","08/01/2008 11:56","https://dwr.state.co.us/Tools/Structures/2014160", +"2014161","PERMIT 23556-F-","FIELD #3 - WEST ROBERTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23556-F","09062766/10060087","PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","26","40.0 N","8.0 E","N","","","","","405571.0","4170797.0","37.679522","-106.070884","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014161", +"2014162","PERMIT 1296-R-R","PRENTICE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","1296-R-R","01062040/01062075","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","27","40.0 N","8.0 E","N","","","","","404753.0","4170802.0","37.679482","-106.080160","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014162", +"2014163","PERMIT 38458-F-","10M WQ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38458-F","100158/10061078","RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","14","40.0 N","8.0 E","N","","","","","405645.0","4174808.0","37.715675","-106.070565","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014163", +"2014166","PERMIT 5986-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","5986-F","12212664-6, 19861081-1BAGROOM","MONTE VISTA POTATO GROWERS COOP ASSOCIATION","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","33","40.0 N","8.0 E","N","","","","","402765.0","4168878.0","37.661935","-106.102445","08/06/2020 17:26","https://dwr.state.co.us/Tools/Structures/2014166", +"2014168","PERMIT 11027-R-F","W BOYCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","11027-R-R","03062367/03062405","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","34","40.0 N","8.0 E","N","","","","","404745.0","4169983.0","37.672101","-106.080144","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014168", +"2014169","PERMIT 45486-F","PURELY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","45486-F","12062588/05083089","ALDERETE, LES; SKYLINE POTATO COMPANY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","4","40.0 N","8.0 E","N","","","","","402858.0","4178271.0","37.746591","-106.102644","08/06/2020 17:28","https://dwr.state.co.us/Tools/Structures/2014169", +"2014170","PERMIT 1337-R-R","S 7 MILE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","1337-R-R","03063670/03063697","DEACON, BRETT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","40.0 N","8.0 E","N","","","","","407973.0","4169952.0","37.672151","-106.043542","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014170", +"2014173","PERMIT 47673-F-","#17E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47673-F","08223542, 09061926/10061036","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES); COONEY PROPERTIES 108 LLC (COONEY, TIMOTHY J.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","1","40.0 N","9.0 E","N","","","","","417486.0","4177192.0","37.738304","-105.936505","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014173", +"2014175","PERMIT 36099-F-","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","36099-F","22-02718-08","CARPENTER, CODY; CARPENTER, KENNETH L.; GOEHL RANCHES","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","40.0 N","9.0 E","N","","","","","408930.0","4175609.0","37.723227","-106.033399","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014175", +"2014176","18CW3004 PERMIT 51189-F","6B PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","51189-F","07061130/07061161, 07061142/07061182","SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","10","40.0 N","9.0 E","N","","","","","414583.0","4176386.0","37.730774","-105.969354","07/30/2021 13:12","https://dwr.state.co.us/Tools/Structures/2014176", +"2014177","PERMIT 27991-F","LAMBERT DITCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","27991-F","06-8-2832","WHITE MOUNTAIN FARM INC. (NEW, PAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","3","39.0 N","10.0 E","N","","","","","423502.0","4168505.0","37.660536","-105.867321","07/22/2008 09:34","https://dwr.state.co.us/Tools/Structures/2014177", +"2014180","PERMIT 13081-R-F","QTR 16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","13081-F-R","07061153/06123297, 07061184","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","12","40.0 N","9.0 E","N","","","","","416970.0","4175590.0","37.723820","-105.942178","12/12/2007 13:38","https://dwr.state.co.us/Tools/Structures/2014180", +"2014182","PERMIT 22405-FR","FIELD #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22405-F","15-10715-8","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","14","40.0 N","9.0 E","N","","","","","416351.0","4173953.0","37.709011","-105.949012","12/31/2007 08:52","https://dwr.state.co.us/Tools/Structures/2014182", +"2014183","PERMIT 22404-FR","FIELD #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22404-F, 22404-F-R","24-02969","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","14","40.0 N","9.0 E","N","","","","","415560.0","4173958.0","37.708983","-105.957986","11/17/2023 11:00","https://dwr.state.co.us/Tools/Structures/2014183", +"2014184","PERMIT 42183-F-","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","42183-F","20-03007","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","15","40.0 N","9.0 E","N","","","","","413821.0","4173861.0","37.707947","-105.977701","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014184", +"2014185","PERMIT 22403-F-R","FIELD #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22403-F","20-04455","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","15","40.0 N","9.0 E","N","","","","","414749.0","4173965.0","37.708971","-105.967186","12/31/2007 11:00","https://dwr.state.co.us/Tools/Structures/2014185", +"2014187","PERMIT 22829-F-","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22829-F","09061276/09061363","HOLLAND, ARTHUR L.; NYE, WILLIAM","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","40.0 N","9.0 E","N","","","","","410555.0","4174006.0","37.708941","-106.014766","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014187", +"2014189","PERMIT 29660-F-","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","29660-F","","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","SW","NE","22","40.0 N","9.0 E","N","","","","","414560.0","4172999.0","37.700248","-105.969217","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014189", +"2014190","PERMIT 22273-F-","FIELD #25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22273-F","15-04671-8, 24-07179-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","23","40.0 N","9.0 E","N","","","","","416197.0","4172351.0","37.694559","-105.950575","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014190", +"2014191","PERMIT 22272-F-","FIELD #11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22272-F","60603170322","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","24","40.0 N","9.0 E","N","","","","","417432.0","4172584.0","37.696771","-105.936595","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014191", +"2014192","PERMIT 34315-F-","FIELD #26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","34315-F","22-08354-08, 24-06254-06","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","25","40.0 N","9.0 E","N","","","","","417050.0","4171526.0","37.687202","-105.940807","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014192", +"2014193","PERMIT NO. 23442-F","SELTERS PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23442-F","12062534/12062741","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","27","40.0 N","8.0 E","N","","","","","403968.0","4171596.0","37.686556","-106.089166","03/05/2008 14:58","https://dwr.state.co.us/Tools/Structures/2014193", +"2014194","07CW10 WELL NO 2-R","USHER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0010","21788-F","10060656/09061404","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","31","40.0 N","9.0 E","N","","","","","408795.0","4169951.0","37.672224","-106.034222","06/10/2010 12:20","https://dwr.state.co.us/Tools/Structures/2014194", +"2014196","07CW10 WELL NO 1-A","#32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0010","35140-F, 35140-F-R","10060734/10061035-100202","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","35","40.0 N","9.0 E","N","","","","","415300.0","4170096.0","37.674154","-105.960486","06/10/2010 11:59","https://dwr.state.co.us/Tools/Structures/2014196", +"2014197","07CW10 WELL NO 3-A","#33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0010","34964-F, 34964-F-R","062017001235/01250053","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","35","40.0 N","9.0 E","N","","","","","415285.0","4169318.0","37.667141","-105.960566","06/10/2010 12:07","https://dwr.state.co.us/Tools/Structures/2014197", +"2014198","PERMIT 25069-F-R","FIELD #28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","25069-F-R, 25069-F-R","20-051138","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","35","40.0 N","9.0 E","N","","","","","415924.0","4169830.0","37.671814","-105.953380","12/10/2023 11:10","https://dwr.state.co.us/Tools/Structures/2014198", +"2014199","PERMIT 43747-F-","FIELD #28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43747-F","20-051138","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","35","40.0 N","9.0 E","N","","","","","416169.0","4169694.0","37.670611","-105.950587","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014199", +"2014201","PERMIT 27312-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","27312-F","11061462/05063050","ASBELL FARMS, LLC; ASBELL, KRIS M.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","36","40.0 N","9.0 E","N","","","","","417505.0","4169245.0","37.666686","-105.935389","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014201", +"2014202","PERMIT 27311-F-","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","27311-F","062017001231/11060687","ASBELL FARMS, LLC; ASBELL, KRIS M.; MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","36","40.0 N","9.0 E","N","","","","","416895.0","4169318.0","37.667289","-105.942313","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014202", +"2014204","PERMIT 38693-F-","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","16CW0012","38693-F","10113887, 17-11571-08","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","40.0 N","10.0 E","N","","","","","420759.0","4177695.0","37.743126","-105.899417","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014204", +"2014205","PERMIT 22656-F","SANDERSON, SANDERSON QUARTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22656-F","12062527/12062755","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","21","40.0 N","8.0 E","N","","","","","403155.0","4172423.0","37.693923","-106.098495","03/07/2008 08:26","https://dwr.state.co.us/Tools/Structures/2014205", +"2014206","PERMIT 52749-F","#20 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","52749-F","09061917/062019000992","BEIRIGER, BRANDON J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","8","40.0 N","10.0 E","N","","","","","420243.0","4176552.0","37.732780","-105.905148","03/10/2008 14:51","https://dwr.state.co.us/Tools/Structures/2014206", +"2014207","PERMIT 28730-F-","W-4 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0010, W1136","28730-F","15-09404-6","JONES, MICHAEL & SARAH; JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","6","40.0 N","10.0 E","N","","","","","418277.0","4177376.0","37.740033","-105.927549","12/23/2014 09:35","https://dwr.state.co.us/Tools/Structures/2014207", +"2014209","23CW3012 WELL NO 1","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW3012","19394-F, 89852-F","12062598/12062694-101084, 25-02175-06, DUMMY","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","2","39.0 N","10.0 E","N","","","","","424931.0","4167523.0","37.651804","-105.851020","09/30/2024 14:35","https://dwr.state.co.us/Tools/Structures/2014209", +"2014210","23CW3012 WELL NO 2","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW3012","20156-F, 89854-F","12062598/12062694-101084, 25-02175-06, DUMMY","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","2","39.0 N","10.0 E","N","","","","","424934.0","4167704.0","37.653436","-105.851005","09/30/2024 14:35","https://dwr.state.co.us/Tools/Structures/2014210", +"2014211","PERMIT 15880-R-R","FIELD #35","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","15880-R-R","60603316287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","2","39.0 N","10.0 E","N","","","","","425721.0","4167676.0","37.653247","-105.842081","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014211", +"2014212","PERMIT 35780-F-R","FIELD #35","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","35780-F-R","60603316287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","2","39.0 N","10.0 E","N","","","","","425716.0","4167257.0","37.649471","-105.842095","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014212", +"2014213","PERMIT 38456-F-","FIELD #34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38456-F","14-08152","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NE","2","39.0 N","10.0 E","N","","","","","425776.0","4168337.0","37.659209","-105.841525","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014213", +"2014214","W0334 WELL NO 7","FIELD 29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","13293-R-R","60604117030","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","19","40.0 N","10.0 E","N","","","","","418283.0","4172827.0","37.699037","-105.926970","01/09/2018 14:58","https://dwr.state.co.us/Tools/Structures/2014214", +"2014219","PERMIT # 24303-F","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","24303-F","09061322/09061368","HOLLAND, ARTHUR L.; NYE, WILLIAM","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","40.0 N","9.0 E","N","","","","","411312.0","4173998.0","37.708942","-106.006178","03/12/2008 17:16","https://dwr.state.co.us/Tools/Structures/2014219", +"2014220","PERMIT 886-RR","23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","886-R-R","10242148/062017001246","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SW","29","41.0 N","10.0 E","N","","","","","420259.0","4180375.0","37.767235","-105.905386","03/21/2008 09:21","https://dwr.state.co.us/Tools/Structures/2014220", +"2014222","PERMIT 45860-F-","BRANTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","45860-F","10242144/08223635","CLAYTON FARMS, LLC (ROD CLAYTON); CLAYTON, BRANDT D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","22","40.0 N","10.0 E","N","","","","","423997.0","4171990.0","37.691986","-105.862073","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014222", +"2014226","2006CW026 WELL NO 2S","ZIMATIC.....WEST SUPPLEMENTAL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0026","55397-F","06-6-2101","SANDOVAL, BETTY","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","23","40.0 N","10.0 E","N","","","","","424637.0","4172901.0","37.700249","-105.854909","08/01/2008 11:14","https://dwr.state.co.us/Tools/Structures/2014226", +"2014227","81CW051 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0051","22625-F","16-06585-6, GP06-08-3173","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","25","40.0 N","10.0 E","N","","","","","427360.0","4170740.0","37.680993","-105.823807","01/02/2008 15:00","https://dwr.state.co.us/Tools/Structures/2014227", +"2014228","PERMIT 46901-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46901-F","16-06585-6, GP06-08-3173","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","25","40.0 N","10.0 E","N","","","","","427391.0","4171015.0","37.683474","-105.823483","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014228", +"2014229","PERMIT 40929-F-","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","40929-F","12062589/12062702-101086","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","26","40.0 N","10.0 E","N","","","","","425414.0","4171159.0","37.684613","-105.845917","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014229", +"2014230","PERMIT 55714-F-","FIELD #31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","55714-F","22-08353-08","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","27","40.0 N","10.0 E","N","","","","","423221.0","4171119.0","37.684071","-105.870782","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014230", +"2014235","2006CW011 WELL NO 7A","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0011","51985-F","23-02636-08","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","30","40.0 N","10.0 E","N","","","","","419101.0","4170374.0","37.677003","-105.917420","07/30/2008 16:00","https://dwr.state.co.us/Tools/Structures/2014235", +"2014237","PERMIT 44770-FR","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","44770-F, 44770-F-R","04060815/10060134","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","2","40.0 N","6.0 E","N","","","","","387001.0","4177382.0","37.736760","-106.282456","04/25/2008 11:02","https://dwr.state.co.us/Tools/Structures/2014237", +"2014238","PERMIT 45885-F-","COWAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","45885-F","06-6-2108","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","33","40.0 N","10.0 E","N","","","","","422558.0","4169924.0","37.673246","-105.878173","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014238", +"2014239","PERMIT 24070-F-R","WALBURG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24070-F, 24070-F-R","06-6-2095","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","33","40.0 N","10.0 E","N","","","","","422405.0","4169029.0","37.665167","-105.879813","12/07/2023 08:39","https://dwr.state.co.us/Tools/Structures/2014239", +"2014240","PERMIT 47987-F-","GK HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47987-F","06-6-1908","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","33","40.0 N","10.0 E","N","","","","","421760.0","4169141.0","37.666121","-105.887137","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014240", +"2014241","PERMIT 49982-F-","FIELD 10 - NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","49982-F","GP13-4666","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","35","40.0 N","10.0 E","N","","","","","424948.0","4169221.0","37.667109","-105.851002","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014241", +"2014242","PERMIT 43057-F-","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43057-F","23-02648-08","COOLEY FARMS, INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","36","40.0 N","10.0 E","N","","","","","426320.0","4169439.0","37.669185","-105.835469","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014242", +"2014243","PERMIT 57923-F","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57923-F","04116119/12212587, 05083046/07061178","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","8","39.0 N","10.0 E","N","","","","","420887.0","4165811.0","37.636035","-105.896674","04/01/2008 11:02","https://dwr.state.co.us/Tools/Structures/2014243", +"2014244","PERMIT 45011-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","45011-F","062013004249/10061050","KOLB, JONAH; WARNER & KOLB FAMILY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","36","40.0 N","10.0 E","N","","","","","427149.0","4169513.0","37.669918","-105.826077","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014244", +"2014245","PERMIT 38065-F-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38065-F-R","GP11-4815-8","MCKINLEY, ROBERT","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","35","40.0 N","10.0 E","N","","","","","425797.0","4169335.0","37.668205","-105.841388","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014245", +"2014253","43314-F SEED STORAGE WELL","SEED S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","17CW3010","43314-F","20002063","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","25","40.0 N","9.0 E","N","","","","","417304.0","4171885.0","37.690460","-105.937967","01/17/2024 16:12","https://dwr.state.co.us/Tools/Structures/2014253", +"2014255","PERMIT 58794-F","WEST SHOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","58794-F","08073059/10062008, 11060567/11060600","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","9","40.0 N","7.0 E","N","","","","","393098.0","4175659.0","37.721966","-106.213021","05/20/2008 15:46","https://dwr.state.co.us/Tools/Structures/2014255", +"2014256","PERMIT 35475-FR","BAKER-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","35475-F, 98336-VE, 35475-F-R","10061933/01250081","PEPPER, KAGE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","19","40.0 N","7.0 E","N","","","","","390236.0","4172492.0","37.693089","-106.245012","05/20/2008 15:30","https://dwr.state.co.us/Tools/Structures/2014256", +"2014257","PERMIT 58972-F","CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","58972-F","03-06-1077","JONES, ROBERT W. & BETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","2","40.0 N","10.0 E","N","","","","","425726.0","4177647.0","37.743110","-105.843041","02/07/2011 14:48","https://dwr.state.co.us/Tools/Structures/2014257", +"2014258","PERMIT 42216-F","F#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","42216-F","10062769/10062819, 18-07650-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","31","39.0 N","10.0 E","N","","","","","418208.0","4160034.0","37.583737","-105.926388","05/20/2008 15:01","https://dwr.state.co.us/Tools/Structures/2014258", +"2014259","PERMIT 57619-F","CR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57619-F","06-8-3517","PARGIN, JACOB E. & AUBREY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","8","40.0 N","7.0 E","N","","","","","391871.0","4176559.0","37.729932","-106.227075","03/14/2008 17:15","https://dwr.state.co.us/Tools/Structures/2014259", +"2014261","PERMIT 57320-F-","C1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57320-F","12062585/12062693-101083","COOLEY FARMS, INC.; COOLEY, KIMOTHY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","9","39.0 N","10.0 E","N","","","","","422441.0","4167061.0","37.647433","-105.879195","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014261", +"2014262","PERMIT 37397-F-","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","37397-F","12062585/12062693-101083","COOLEY FARMS, INC.; COOLEY, KIMOTHY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","9","39.0 N","10.0 E","N","","","","","422140.0","4166665.0","37.643839","-105.882565","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014262", +"2014263","PERMIT 57311-F-","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57311-F","07-6-1100","COOLEY FARMS, INC.; COOLEY, KIMOTHY R.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","9","39.0 N","10.0 E","N","","","","","421333.0","4166264.0","37.640156","-105.891668","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014263", +"2014264","21CW0017 WELL NO 1S","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0017","36604-F","09-8-1363","FREEL, JESS","RGWCD SD1","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","SW","NE","14","39.0 N","10.0 E","N","","","","","425474.0","4164737.0","37.626740","-105.844581","11/05/2025 13:30","https://dwr.state.co.us/Tools/Structures/2014264", +"2014266","PERMIT 46342-F-","FIELD #62","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46342-F","60512019815","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","39.0 N","10.0 E","N","","","","","420238.0","4163414.0","37.614377","-105.903767","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014266", +"2014267","PERMIT 46340-F-","FIELD #64","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46340-F","60603170337, 60603305096","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","39.0 N","10.0 E","N","","","","","420835.0","4162807.0","37.608958","-105.896938","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014267", +"2014268","PERMIT 47940-F-","FIELD #64","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47940-F","60603170337, 60603305096","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","39.0 N","10.0 E","N","","","","","420603.0","4162949.0","37.610217","-105.899581","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014268", +"2014270","PERMIT 46341-F-","FIELD #63","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46341-F","60603179931, 60901270208","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NE","20","39.0 N","10.0 E","N","","","","","420848.0","4163226.0","37.612735","-105.896836","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014270", +"2014271","PERMIT 47996-F-","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","47996-F","07-8-1397","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","29","39.0 N","10.0 E","N","","","","","419865.0","4161317.0","37.595445","-105.907763","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014271", +"2014273","PERMIT 42693-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","42693-F","18-03423-06","MARTINEZ, HILARIO A. & JOSE","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SE","NW","29","39.0 N","10.0 E","N","","","","","420023.0","4161608.0","37.598082","-105.906005","02/06/2026 13:18","https://dwr.state.co.us/Tools/Structures/2014273", +"2014274","PERMIT 43482-F-","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","43482-F","","KRUSE, MIRKO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SE","SW","31","39.0 N","10.0 E","N","","","","","418564.0","4159280.0","37.576973","-105.922272","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014274", +"2014275","PERMIT NO. 21403-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21403-F","04-6-1695","BROBERG, DAVID","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","6","39.0 N","11.0 E","N","","","","","428199.0","4168351.0","37.659528","-105.814058","04/25/2008 11:36","https://dwr.state.co.us/Tools/Structures/2014275", +"2014276","PERMIT 47941-F","FIELD #38","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","40539-F, 47941-F","15-10716-8, 23-07616-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","6","39.0 N","10.0 E","N","","","","","419149.0","4168484.0","37.659974","-105.916666","04/03/2009 13:38","https://dwr.state.co.us/Tools/Structures/2014276", +"2014278","PERMIT 12725-F-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3003","12725-F-R","07114456","SCHMIDT, BEN; SCHMIDT, LAVERNE D.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","2","40.0 N","7.0 E","N","","","","","395927.0","4178113.0","37.744405","-106.181278","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014278", +"2014279","PERMIT 24003-F-","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24003-F","10060689/10061086-100140","ENSZ, JEANITA; ENSZ, WESTON","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","4","40.0 N","7.0 E","N","","","","","393496.0","4178142.0","37.744387","-106.208870","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014279", +"2014280","22CW0023 WELL NO 2R","112 QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW0023","1410-R-R","09212324/06214537","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","2","40.0 N","7.0 E","N","","","","","396738.0","4178099.0","37.744371","-106.172073","11/05/2025 13:26","https://dwr.state.co.us/Tools/Structures/2014280", +"2014281","PERMIT 18412-F-R","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","18412-F-R, 88190-F","09062706/10060141","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","5","40.0 N","7.0 E","N","","","","","391074.0","4178172.0","37.744372","-106.236359","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014281", +"2014282","PERMIT 22185-F-","W. JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22185-F","12204464/12200762","COLORADO STATE LAND BOARD; PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","5","40.0 N","7.0 E","N","","","","","391877.0","4177380.0","37.737331","-106.227129","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014282", +"2014283","PERMIT 23530-F-R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23530-F, 23530-F-R","09062713/10060132","COLORADO STATE LAND BOARD; ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","8","40.0 N","7.0 E","N","","","","","391060.0","4176565.0","37.729890","-106.236277","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014283", +"2014286","2006CW031 WELL NO 2RR","RD B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0031","1442-R-R","05060235/05060284","MOSBY, DAVID JASON & JENNIFER; SCHRECK, DAVID & MARTHA","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","26","41.0 N","7.0 E","N","","","","","396792.0","4180491.0","37.765933","-106.171800","08/01/2008 15:46","https://dwr.state.co.us/Tools/Structures/2014286", +"2014287","PERMIT 22600-F","SHOP #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22600-F","07-8-1505, 10060695, GP10-1539-6 FULL PIV","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","15","39.0 N","10.0 E","N","","","","","423158.0","4165037.0","37.629253","-105.870856","04/25/2008 11:23","https://dwr.state.co.us/Tools/Structures/2014287", +"2014288","PERMIT 20910-F-","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","20910-F","05062248/05062205","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","33","41.0 N","7.0 E","N","","","","","392704.0","4178978.0","37.751828","-106.217981","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014288", +"2014289","PERMIT 17005-F-","HOME #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","17005-F","","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2014","3","20","SAGUACHE","","","","SE","NE","34","41.0 N","7.0 E","N","","","","","395165.0","4179706.0","37.758674","-106.190156","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014289", +"2014290","PERMIT 22181-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22181-F","07060385/07060917","BAKER, WALTER; SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SE","SE","34","41.0 N","7.0 E","N","","","","","395135.0","4178936.0","37.751731","-106.190385","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014290", +"2014291","2004CW028 WELL NO. 1A","GUNTHER SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0028","22475-F","07060391/07060946","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NW","35","41.0 N","7.0 E","N","","","","","395954.0","4179698.0","37.758692","-106.181199","06/05/2008 15:33","https://dwr.state.co.us/Tools/Structures/2014291", +"2014292","PERMIT 22148-F","FIELD #1 - WEST HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","22148-F","09062780/10060091","PETERSON FARMS LLC (PETERSON, RONALD, GREG & MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","4","39.0 N","8.0 E","N","","","","","402296.0","4167675.0","37.651044","-106.107600","04/25/2008 11:16","https://dwr.state.co.us/Tools/Structures/2014292", +"2014293","PERMIT 36253-F-","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","36253-F","04062006","BARLOW, DWIGHT D.; SMARTT, PHILIP","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SW","34","41.0 N","8.0 E","N","","","","","404040.0","4178855.0","37.751979","-106.089307","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014293", +"2014294","PERMIT 12492-R-F","CIRCLE 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","12492-R, 12492-R-R","04062001/04062031","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","34","41.0 N","8.0 E","N","","","","","404846.0","4178845.0","37.751973","-106.080158","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014294", +"2014296","PERMIT 38352-F-","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","38352-F","10062690/10062893","MYERS LAND, RLLP (MYERS, CORY A. & GERALD W.); MYERS, BRANDY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","27","41.0 N","9.0 E","N","","","","","414594.0","4181389.0","37.775862","-105.969817","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014296", +"2014297","04CW10 WELL NO 2S","MYERS 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0010, 23CW0001","34882-F-R, 88965-F","05062231/05062204","CONSAUL, SCOTT; LINDA K. HAVERLAND TRUST (HAVERLAND, LINDA K.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","29","41.0 N","9.0 E","N","","","","","411357.0","4181024.0","37.772264","-106.006524","10/15/2024 09:41","https://dwr.state.co.us/Tools/Structures/2014297", +"2014298","PERMIT 55396-F-","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","55396-F","12062529/12062770","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","SE","31","41.0 N","9.0 E","N","","","","","409429.0","4178508.0","37.749401","-106.028099","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014298", +"2014299","PERMIT 87853-F","FLD2 PVT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","12023-R-R, 87853-F","06-8-3764","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","34","41.0 N","9.0 E","N","","","","","413783.0","4179595.0","37.759618","-105.978812","02/24/2023 16:46","https://dwr.state.co.us/Tools/Structures/2014299", +"2014300","07CW57 WELL NO 1R","MOCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0057","21-R-R","20-00151-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NE","NW","31","41.0 N","8.0 E","N","","","","","399206.0","4179712.0","37.759182","-106.144289","09/10/2013 09:34","https://dwr.state.co.us/Tools/Structures/2014300", +"2014303","PERMIT 42213-F","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42213-F","23-02149-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","30","39.0 N","10.0 E","N","","","","","419106.0","4160913.0","37.591738","-105.916315","05/20/2008 14:57","https://dwr.state.co.us/Tools/Structures/2014303", +"2014305","PERMIT 16186-FR","FIELD 18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","16186-F-R","60511308287","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","26","40.0 N","9.0 E","N","","","","","415146.0","4170657.0","37.679196","-105.962297","05/22/2008 14:04","https://dwr.state.co.us/Tools/Structures/2014305", +"2014309","2008CW20 WELL NO 14-A","#8, PERMIT 27967-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0020","27967-F","11061455/11061665","KRETSINGER, JOHN & TRUDI","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","5","38.0 N","10.0 E","N","","","","","420975.0","4157812.0","37.563953","-105.894813","08/14/2013 09:09","https://dwr.state.co.us/Tools/Structures/2014309", +"2014311","PERMIT 42074-F","QTR 22-SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42074-F","","TORRES, ALFREDO","RGWCD SD1","10/31/2009","10/31/2019","3","20","ALAMOSA","","","","SW","NE","24","39.0 N","9.0 E","N","","","","","417270.0","4163249.0","37.612627","-105.937374","05/29/2008 09:33","https://dwr.state.co.us/Tools/Structures/2014311", +"2014318","PERMIT 21405-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","21405-F","072018810762/01201336","ANDERSON, GORDON; ANDERSON, JAKE","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NW","SW","6","39.0 N","11.0 E","N","","","","","428157.0","4167547.0","37.652279","-105.814455","06/26/2008 16:40","https://dwr.state.co.us/Tools/Structures/2014318", +"2014319","20CW0015 WAREHOUSE WELL","MAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0015","19986-F, 17333-F, 90387-F","6867215","WHITE ROCK PROPERTIES, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","4","39.0 N","10.0 E","N","","","","","422678.0","4167719.0","37.653384","-105.876579","11/05/2025 13:31","https://dwr.state.co.us/Tools/Structures/2014319", +"2014320","2004CW034 WELL 3A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0034","68470-, 63434-F","19861085","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; VISTA FARMLAND LLC","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","2","39.0 N","8.0 E","N","","","","","405943.0","4167283.0","37.647892","-106.066213","01/17/2024 15:58","https://dwr.state.co.us/Tools/Structures/2014320", +"2014326","PERMIT 055683-F","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","55683-F","23-02149-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","30","39.0 N","10.0 E","N","","","","","419377.0","4161350.0","37.595700","-105.913294","06/13/2008 16:34","https://dwr.state.co.us/Tools/Structures/2014326", +"2014330","2005CW016 WELL NO PUMP 1R","OLIVES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0016","849-R-R","0602017001237/12061366","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","30","41.0 N","10.0 E","N","","","","","418381.0","4181199.0","37.774495","-105.926799","06/04/2009 09:46","https://dwr.state.co.us/Tools/Structures/2014330", +"2014333","PERMIT 22844-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22844-F","","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2015","3","20","ALAMOSA","","","","NW","NW","13","39.0 N","10.0 E","N","","","","","426094.0","4165463.0","37.633333","-105.837629","07/02/2008 10:18","https://dwr.state.co.us/Tools/Structures/2014333", +"2014334","PERMIT 44411-F","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44411-F","10061975/10062009","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","12","39.0 N","9.0 E","N","","","","","416831.0","4166674.0","37.643455","-105.942737","07/02/2008 15:07","https://dwr.state.co.us/Tools/Structures/2014334", +"2014335","23CW0003 WELL NO 2R","B-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0003","12012-R-R, 87662-F, 89944-F","012017002842/09060242","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","6","40.0 N","10.0 E","N","","","","","419071.0","4177719.0","37.743195","-105.918577","11/05/2025 13:22","https://dwr.state.co.us/Tools/Structures/2014335", +"2014336","PERMIT 1103-RR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","1103-R-R","01061406/11061620","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","27","40.0 N","8.0 E","N","","","","","403559.0","4170818.0","37.679501","-106.093701","07/15/2008 16:22","https://dwr.state.co.us/Tools/Structures/2014336", +"2014337","PERMIT 1447-RR","QTR #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","1447-R-R","07061153/06123297, 07061184","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","12","40.0 N","9.0 E","N","","","","","416788.0","4175589.0","37.723794","-105.944242","07/16/2008 14:34","https://dwr.state.co.us/Tools/Structures/2014337", +"2014338","PERMIT 24119-F","3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","24119-F","01061408/01061440","LYNN MCCULLOUGH FARMS LLC (MCCULLOUGH, LYNN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","4","39.0 N","8.0 E","N","","","","","402299.0","4168437.0","37.657911","-106.107668","07/16/2008 14:46","https://dwr.state.co.us/Tools/Structures/2014338", +"2014341","PERMIT 48229-F","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","48229-F","06123281/12061397","HART, JAMES N. & MARIA L.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","24","39.0 N","7.0 E","N","","","","","398085.0","4163408.0","37.612133","-106.154733","07/22/2008 14:31","https://dwr.state.co.us/Tools/Structures/2014341", +"2014343","PERMIT 24386-F","B-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","24386-F","09060204/09062005","BIEL, THOMAS; BIEL, TOMMY & JOY","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","SE","36","41.0 N","8.0 E","N","","","","","408120.0","4178811.0","37.752001","-106.042994","07/24/2008 11:22","https://dwr.state.co.us/Tools/Structures/2014343", +"2014346","2007CW0034 WELL NO 2-R","4222FR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","07CW0034","4222-F-R","17-06920-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","29","39.0 N","9.0 E","N","","","","","410350.0","4160965.0","37.591395","-106.015489","09/10/2013 15:48","https://dwr.state.co.us/Tools/Structures/2014346", +"2014348","08CW0014 WELL NO 2R","2198-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","08CW0014, 18CW0004, 23CW0015","2198-F, 90523-F","23-02165-08","DIAZ, MIGUEL; MIGUEL ANGEL DIAZ REVOCABLE TRUST (DIAZ, MIGUEL A.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","20","39.0 N","9.0 E","N","","","","","410719.0","4162677.0","37.606859","-106.011519","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2014348", +"2014351","19CW0007 WELL NO. 6-RS","# 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","19CW0007","89097-F","20-03577-08","CJS GRAZERS AND GROWERS LLC (SCHULZ, SHAWN); SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","33","39.0 N","9.0 E","N","","","","","412311.0","4160104.0","37.583824","-105.993177","12/01/2022 14:22","https://dwr.state.co.us/Tools/Structures/2014351", +"2014352","PERMIT 889-RR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","889-R-R","07242530/01250077, 23-00713","HARRISON, TODD; HARRISON, WESLEY","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","14","40.0 N","7.0 E","N","","","","","395905.0","4173911.0","37.706537","-106.180927","07/30/2008 15:38","https://dwr.state.co.us/Tools/Structures/2014352", +"2014353","2006CW013 WELL NO 9R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0013","6026-R-R","04061995/04062018","MCNITT FAMILY TRUST (MCNITT, ALANA)","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","34","40.0 N","7.0 E","N","","","","","395024.0","4170103.0","37.672121","-106.190371","06/26/2013 10:36","https://dwr.state.co.us/Tools/Structures/2014353", +"2014355","PERMIT 48822-F","F#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","48822-F, 292840-","10062769/10062819, 18-07650-08","BELTRAN, VENANCIO","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","31","39.0 N","10.0 E","N","","","","","418722.0","4160476.0","37.587766","-105.920616","07/31/2008 11:24","https://dwr.state.co.us/Tools/Structures/2014355", +"2014359","06CW30 WELL NO WEST SEGER CENTER PIVOT","DUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0030","12642-R","14-11239-8","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NW","32","41.0 N","7.0 E","N","","","","","391136.0","4179843.0","37.759437","-106.235906","03/22/2013 16:57","https://dwr.state.co.us/Tools/Structures/2014359", +"2014366","W3649 WELL NO 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3469","11263-R-R","","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2015","3","20","SAGUACHE","","","","NE","SW","27","41.0 N","7.0 E","N","","","","","394407.0","4180514.0","37.765867","-106.198877","07/10/2009 15:31","https://dwr.state.co.us/Tools/Structures/2014366", +"2014382","CAN PUMP","CAN PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","","17-11438","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","6","39.0 N","10.0 E","N","","","","","419001.0","4168699.0","37.661898","-105.918368","10/10/2012 13:37","https://dwr.state.co.us/Tools/Structures/2014382", +"2014383","CAN PUMP","CAN PUMP FIELD 38","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","","15-10716-8, 23-07616-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","6","39.0 N","10.0 E","N","","","","","419007.0","4168608.0","37.661079","-105.918289","10/10/2012 14:04","https://dwr.state.co.us/Tools/Structures/2014383", +"2014384","PERMIT 62113-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","62113--A, 85807-F","6106392","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","NW","NE","29","41.0 N","8.0 E","N","","","","","401322.0","4181652.0","37.776895","-106.120535","01/16/2024 09:51","https://dwr.state.co.us/Tools/Structures/2014384", +"2014385","SURFACE CAN PUMP","#1 CAN PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","","07-8-1505","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","15","39.0 N","10.0 E","N","","","","","422926.0","4165353.0","37.632081","-105.873518","10/10/2012 14:37","https://dwr.state.co.us/Tools/Structures/2014385", +"2014387","2007CW32 WELL NO WAREHOUSE 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","41413-F, 90340-F","6166762","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","SE","SW","17","39.0 N","9.0 E","N","","","","","410600.0","4163942.0","37.618248","-106.013022","12/29/2025 14:59","https://dwr.state.co.us/Tools/Structures/2014387", +"2014434","PERMIT 42933-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42933-F","19864602/462020","A & E FARMS; ECHEVERRIA, JAMES","RGWCD SD1","10/31/2020","10/31/2025","3","20","SAGUACHE","","","","NE","NE","1","41.0 N","9.0 E","N","","","","","418226.0","4187990.0","37.835682","-105.929325","02/06/2026 13:19","https://dwr.state.co.us/Tools/Structures/2014434", +"2014445","07CW0041 WELL NO 1","HUMIDIFICATION WELL #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0041","67539-F","6833162","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","29","40.0 N","10.0 E","N","","","","","419857.1","4170358.0","37.676925","-105.908846","01/11/2024 17:09","https://dwr.state.co.us/Tools/Structures/2014445", +"2014453","10CW0021 WELL NO 4R","K6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0021","12569-R-R","14-17765-8","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","16","40.0 N","8.0 E","N","","","","","403180.0","4174010.0","37.708227","-106.098422","11/05/2025 14:24","https://dwr.state.co.us/Tools/Structures/2014453", +"2014454","PERMIT 41488-F","COLE PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","41488-F","23-05065-06","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","5","39.0 N","10.0 E","N","","","","","420945.0","4167502.0","37.651280","-105.896200","05/15/2023 09:11","https://dwr.state.co.us/Tools/Structures/2014454", +"2014456","07CW05 WELL NO 1-R","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0005","1868-R-R","07061135/07061173","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","40.0 N","10.0 E","N","","","","","418495.0","4175753.0","37.725426","-105.924893","02/07/2011 15:02","https://dwr.state.co.us/Tools/Structures/2014456", +"2014458","07CW0011 WELL NO 05-R","SILO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0011","","10062729/10062833","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","22","40.0 N","7.0 E","N","","","","","395081.0","4173307.0","37.701000","-106.190186","01/30/2025 08:35","https://dwr.state.co.us/Tools/Structures/2014458", +"2014459","07CW19 WELL NO 1","WAREHOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0019","89687-F","12062557/12062714","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.; SLADE, LINDA; WORLEY & MCCULLOUGH INC.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","28","40.0 N","8.0 E","N","","","","","402638.0","4170537.0","37.676872","-106.104106","07/23/2021 15:34","https://dwr.state.co.us/Tools/Structures/2014459", +"2014460","07CW25 WELL NO 4-R","FKA 2011423, N-10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0025","","10063614/10063643","HARRISON FAMILY TRUST (WESLEY); HARRISON, TODD","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","40.0 N","7.0 E","N","","","","","396342.0","4175522.0","37.721104","-106.176200","02/07/2011 15:11","https://dwr.state.co.us/Tools/Structures/2014460", +"2014461","07CW27 WELL NO 3-R","WM-YARD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0027","","8406843","JAMES M. MCCULLOUGH REVOCABLE TRUST; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","10","39.0 N","8.0 E","N","","","","","404193.0","4166517.0","37.640808","-106.085947","01/17/2024 15:41","https://dwr.state.co.us/Tools/Structures/2014461", +"2014466","10CW0004 WELL NO 4-S","M3 NW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0004","25318-F, 75853-F","13-08185-6","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","39.0 N","10.0 E","N","","","","","420663.0","4164597.0","37.625075","-105.899080","11/05/2025 14:24","https://dwr.state.co.us/Tools/Structures/2014466", +"2014477","2011CW07 WELL NO 3-R","#7 FKA 2006572","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0007","75965-F","15-06618-8, GP12-4742-6","SCHULZ FARM, LLC (SCHULZ, SHAWN)","RGWCD SD1","10/31/2012","10/31/2025","3","20","ALAMOSA","","","","NW","NE","35","39.0 N","9.0 E","N","","","","","415673.0","4160578.0","37.588410","-105.955158","07/19/2013 08:57","https://dwr.state.co.us/Tools/Structures/2014477", +"2014478","2011CW07 WELL NO 4-R","#4 FKA 2006573","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0007","75966-F","12212665/08223634, GP12-4377-6","SCHULZ FARM, LLC (SCHULZ, SHAWN); SCHULZ, DON R. AND SHAWN D.","RGWCD SD1","10/31/2013","10/31/2025","3","20","ALAMOSA","","","","NW","NW","35","39.0 N","9.0 E","N","","","","","414905.0","4160581.0","37.588367","-105.963856","08/14/2013 16:02","https://dwr.state.co.us/Tools/Structures/2014478", +"2014480","22CW0033 WELL NO 4R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","12CW0004, 22CW0033","12174-R-R, 87663-F","07061152/07061180","EAGLES, BURTON J.","RGWCD SD1","10/31/2013","10/31/2025","3","20","ALAMOSA","","","","NW","SW","11","40.0 N","9.0 E","N","","","","","415055.0","4175844.0","37.725933","-105.963935","08/18/2025 11:30","https://dwr.state.co.us/Tools/Structures/2014480", +"2014481","11CW0018 WELL NO 1R","B-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0018, 23CW0003","12011-R-R, 89945-F","012017002842/09060242","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2012","10/31/2025","3","20","ALAMOSA","","","","NW","NE","6","40.0 N","10.0 E","N","","","","","419412.0","4178180.0","37.747379","-105.914758","11/05/2025 14:22","https://dwr.state.co.us/Tools/Structures/2014481", +"2014485","10CW0032 WELL NO. 2-R","EL I","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0032","76743-F","8926589","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2018","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","40.0 N","8.0 E","N","","","","","402694.0","4177879.0","37.743041","-106.104453","11/05/2025 14:25","https://dwr.state.co.us/Tools/Structures/2014485", +"2014487","10CW0009 WELL NO 1","ALPINE CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0009","75832-F","8835307","HOLLAND, ARTHUR L.","RGWCD SD1","10/31/2013","10/31/2025","3","20","ALAMOSA","","","","SW","SE","11","40.0 N","9.0 E","N","","","","","415850.0","4175204.0","37.720239","-105.954840","01/12/2024 12:50","https://dwr.state.co.us/Tools/Structures/2014487", +"2014488","07CW0050 WELL NO 3R","TEMPLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0050","6069-R-R","13-14407-8","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","1","40.0 N","7.0 E","N","","","","","398364.0","4177290.0","37.737263","-106.153508","09/13/2013 11:56","https://dwr.state.co.us/Tools/Structures/2014488", +"2014490","07CW0051 WELL 1R","P-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0051","2445-F","05060246/05060259","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","20","SAGUACHE","","","","SW","NE","35","41.0 N","7.0 E","N","","","","","396772.0","4179694.0","37.758748","-106.171914","09/13/2013 11:57","https://dwr.state.co.us/Tools/Structures/2014490", +"2014494","2010CW23 MOSCA K-12 SCHOOL IRRIGATION WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0023","282084-, 284143-, 84334-F","GP10-3990","FRITZ, GARY; SANGRE DE CRISTO SCHOOL DISTRICT","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","SW","SE","28","40.0 N","10.0 E","N","","","","","422309.0","4170593.0","37.679254","-105.881068","06/22/2022 15:48","https://dwr.state.co.us/Tools/Structures/2014494", +"2014495","2007CW32 WELL NO WAREHOUSE 2","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0032","50413-F, 90512-F","3977834","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","39.0 N","9.0 E","N","","","","","409986.0","4164713.0","37.625137","-106.020073","01/11/2024 13:19","https://dwr.state.co.us/Tools/Structures/2014495", +"2014500","PERMIT 77751-F","DILLON WEST SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","77751-F","03063657/03063680","MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2014","10/31/2025","3","20","SAGUACHE","","","","SE","NW","34","41.0 N","7.0 E","N","","","","","394388.0","4179634.0","37.757935","-106.198964","07/15/2014 12:38","https://dwr.state.co.us/Tools/Structures/2014500", +"2014502","23CW3003 WELL NO 5S","WALBERG NO 1-NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020","78571-F","21-08882-04","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NW","SE","33","40.0 N","10.0 E","N","","","","","422230.0","4169331.0","37.667874","-105.881829","05/15/2025 10:39","https://dwr.state.co.us/Tools/Structures/2014502", +"2014503","11CW0020 WELL NO 1RJ","JERRY NO 1-SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020","78595-F","21-08884-04","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SW","NW","4","39.0 N","10.0 E","N","","","","","421364.0","4167933.0","37.655201","-105.891497","04/14/2015 15:33","https://dwr.state.co.us/Tools/Structures/2014503", +"2014504","11CW0020 WELL NO 4RW2","WESTBROOK NO 2- S EDGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, 22CW3032","78601-F","21-08880-4","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","39.0 N","10.0 E","N","","","","","420733.0","4167925.0","37.655074","-105.898649","11/05/2025 14:23","https://dwr.state.co.us/Tools/Structures/2014504", +"2014505","11CW0020 WELL NO 4RW1","WESTBROOK NO 1- SW OF FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, 22CW3032","78602-F","21-08885-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","39.0 N","10.0 E","N","","","","","420556.0","4168108.0","37.656708","-105.900675","11/05/2025 14:23","https://dwr.state.co.us/Tools/Structures/2014505", +"2014506","11CW0020 WELL NO 4RS1","SHOP NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, 22CW3032","78611-F","21-08886-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NW","NW","5","39.0 N","10.0 E","N","","","","","419741.0","4168509.0","37.660251","-105.909958","11/05/2025 14:23","https://dwr.state.co.us/Tools/Structures/2014506", +"2014507","11CW0020 WELL NO 4RS2","SHOP NO 2, SW CORNER-SHOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020, 22CW3032","78612-F","20-08881-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SW","NW","5","39.0 N","10.0 E","N","","","","","419761.0","4168071.0","37.656305","-105.909683","11/05/2025 14:23","https://dwr.state.co.us/Tools/Structures/2014507", +"2014508","11CW0020 WELL NO 1RP","PINKY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0020","78622-F","21-08883-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","NE","SE","6","39.0 N","10.0 E","N","","","","","419653.0","4167717.0","37.653106","-105.910868","04/14/2015 15:48","https://dwr.state.co.us/Tools/Structures/2014508", +"2014509","13CW0009 WELL NO 3-S","M4 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0009, 17CW0011","25319-F, 90484-F","16-05378-6","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","39.0 N","10.0 E","N","","","","","420233.0","4164225.0","37.621685","-105.903912","04/15/2015 10:43","https://dwr.state.co.us/Tools/Structures/2014509", +"2014511","15CW0005 WELL NO 1 R","BEIRIGER 13 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW0005","297400-, 90547-F","12204453/05201400216","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SE","NW","9","40.0 N","10.0 E","N","","","","","421888.0","4176327.0","37.730894","-105.886457","11/17/2015 10:37","https://dwr.state.co.us/Tools/Structures/2014511", +"2014512","14CW3020 WELL NO 4-6-R","REPLACES 2009112; 2009111","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","14CW3020","295571-, 79355-F, 80124-F, 324504-","8472684","MILLER, TREVOR; NOVA SOURCE POWER","RGWCD SD1","10/31/2015","10/31/2025","3","20","ALAMOSA","","","","SW","SE","21","40.0 N","9.0 E","N","","","","","412628.0","4172144.0","37.692360","-105.991027","06/22/2022 15:53","https://dwr.state.co.us/Tools/Structures/2014512", +"2014520","23CW3003 WELL NO 5SS","WALBERG NO. 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0020","79418-F","21-08888-04","DOROTHY E KIRKPATRICK TRUSTEE; KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","","NW","SE","33","40.0 N","10.0 E","N","","","","","422388.0","4169522.0","37.669608","-105.880058","05/15/2025 10:39","https://dwr.state.co.us/Tools/Structures/2014520", +"2014521","11CW0020 WELL NO 1RP2","PINKY 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","11CW0020","79419-F","21-08887-04","KIRKPATRICK, JASON T.","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","","NW","SW","5","39.0 N","10.0 E","N","","","","","419761.0","4167705.0","37.653007","-105.909643","01/22/2018 14:56","https://dwr.state.co.us/Tools/Structures/2014521", +"2014523","15CW3014 WELL NO 4R","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","15CW3014","79743-F","16-10840","COOLEY PROPERTY INVESTMENTS LLC (COOLEY, JAMES)","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","","NE","NW","30","40.0 N","10.0 E","N","","","","","418578.0","4171580.0","37.687825","-105.923485","08/21/2018 11:47","https://dwr.state.co.us/Tools/Structures/2014523", +"2014524","15CW0007 WELL NO 13SR","#11, REPLACES 2005871","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","15CW0007","26851-F-R","03061806/03061832","MITCHELL FAMILY FARMS, LLC; MITCHELL, MICHAEL & GLENALEE","RGWCD SD1","10/31/2016","10/31/2025","3","20","ALAMOSA","","","","NW","NE","4","39.0 N","9.0 E","N","","","","","412435.0","4168482.0","37.659340","-105.992776","11/05/2025 13:46","https://dwr.state.co.us/Tools/Structures/2014524", +"2014527","16CW3010 WELL NO 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","16CW3010","4084-F-R","17-09054-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2014","10/31/2025","3","20","ALAMOSA","","","","NW","NE","16","39.0 N","9.0 E","N","","","","","412580.0","4165430.0","37.631849","-105.990767","11/05/2025 14:02","https://dwr.state.co.us/Tools/Structures/2014527", +"2014528","15CW3018 WELL NO 2-R","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","15CW3018, 17CW3010","2359-F-R","19-05719","BEIRIGER, TRAVIS P.; NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2017","10/31/2025","3","20","ALAMOSA","","","","NW","SW","24","40.0 N","9.0 E","N","","","","","416972.0","4172359.0","37.694702","-105.941786","01/22/2018 12:10","https://dwr.state.co.us/Tools/Structures/2014528", +"2014530","16CW0011 WELL NO 1-SR","REPLACES 82CW089 NO 1S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0011","80790-F","11061524/11061542, 19-04778-08","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SE","SE","6","40.0 N","10.0 E","N","","","","","419598.0","4177092.0","37.737590","-105.912526","09/08/2020 13:59","https://dwr.state.co.us/Tools/Structures/2014530", +"2014531","16CW0010 WELL NO. 6-R","#16 PIVOT, REPLACES 2008199","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","16CW0010","80801-F","16-12836-8, GP11-4804-6","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2017","10/31/2025","3","20","SAGUACHE","","","","NE","SW","31","41.0 N","10.0 E","N","","","","","418829.0","4179132.0","37.755907","-105.921481","08/21/2018 11:48","https://dwr.state.co.us/Tools/Structures/2014531", +"2014532","16CW0010 WELL NO 1-R","#16 EAST, REPLACES 2010466","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0010","80803-F","16-12836-8, GP11-4804-6","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2017","10/31/2025","3","20","SAGUACHE","","","","SW","SW","31","41.0 N","10.0 E","N","","","","","418561.0","4178752.0","37.752459","-105.924480","01/22/2018 12:02","https://dwr.state.co.us/Tools/Structures/2014532", +"2014535","PERMIT NO 47945-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","47945-F, 89864-F","18-04529-04","EASTMAN, CONNIE; ELOQUENT ENTERPRISES LLC","RGWCD SD1","10/31/2017","10/31/2025","3","20","ALAMOSA","","","","SW","SW","26","39.0 N","10.0 E","N","","","","","424496.0","4160983.0","37.592827","-105.855275","08/06/2020 17:32","https://dwr.state.co.us/Tools/Structures/2014535", +"2014537","PERMIT 42591-FR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42591-F, 42591-F-R","20418251","C & C FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","8","39.0 N","8.0 E","N","","","","","400268.0","4165845.0","37.634334","-106.130336","01/12/2024 15:51","https://dwr.state.co.us/Tools/Structures/2014537", +"2014538","17CW3022 WELL NO. 1-SS","#11 NW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","17CW3022","308176-, 82054-F","18-06837-06","JADA HOLDINGS LLC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","NW","NE","13","40.0 N","10.0 E","N","","","","","427133.0","4175125.0","37.720494","-105.826820","09/01/2023 14:35","https://dwr.state.co.us/Tools/Structures/2014538", +"2014543","17CW0008 WELL NO. 1-S","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","17CW0008","82706-F","07-8-1282, 11061531/11061551","BEIRIGER, MARK & LORETTA","RGWCD SD1","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","NE","NW","5","40.0 N","10.0 E","N","","","","","420295.0","4178167.0","37.747340","-105.904735","05/03/2023 10:33","https://dwr.state.co.us/Tools/Structures/2014543", +"2014544","PERMIT 29074-F","SCOTT STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","29074-F, 85801-F","212141993","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","19","40.0 N","8.0 E","N","","","","","398757.0","4172161.0","37.691086","-106.148335","01/11/2024 17:20","https://dwr.state.co.us/Tools/Structures/2014544", +"2014548","16CW0011 WELL NO 1-SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0011","83099-F","11061524/11061542, 19-04778-08","NORTH ROAD FARM INC. (BEIRIGER, DENNIS)","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","40.0 N","10.0 E","N","","","","","419219.0","4176835.0","37.735241","-105.916799","09/08/2020 14:00","https://dwr.state.co.us/Tools/Structures/2014548", +"2014549","16CW0012 WELL NO 2-RS","REPLACES 2014529","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0012","83087-F","10113887, 17-11571-08","AMP OPERATING/BEIRIGER FARMS (BEIRIGER, JIM, DENNIS & MARK); BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NE","NE","5","40.0 N","10.0 E","N","","","","","421317.0","4178340.0","37.748987","-105.893154","09/08/2020 14:01","https://dwr.state.co.us/Tools/Structures/2014549", +"2014550","18CW0010 WELL NO. 1-RS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","83692-F","03061802/03061826-11061632","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","40.0 N","7.0 E","N","","","","","396183.0","4175376.0","37.719770","-106.177982","12/01/2022 14:33","https://dwr.state.co.us/Tools/Structures/2014550", +"2014551","18CW0010 WELL NO. 1-S","TUMAC RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","83712-F","19-03591-08","PAULSON, ROCK B. & TERRI RAE","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","40.0 N","7.0 E","N","","","","","393936.0","4175924.0","37.724451","-106.203553","12/01/2022 14:28","https://dwr.state.co.us/Tools/Structures/2014551", +"2014552","19CW0002 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0002, 20CW0001","83869-F","20-04487-06","SEGER, MATHEW","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","18","40.0 N","7.0 E","N","","","","","389390.0","4174110.0","37.707567","-106.254851","08/06/2020 17:33","https://dwr.state.co.us/Tools/Structures/2014552", +"2014554","PERMIT 039810-F","RIERSON 8 MILE STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","39810-F","20083554","HANSEN RANCHES CO.; RIERSON, ROSS; RIERSON, SARAH","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","27","40.0 N","8.0 E","N","50","E","2330","N","405152.7","4171272.0","37.683759","-106.075686","01/12/2024 18:00","https://dwr.state.co.us/Tools/Structures/2014554", +"2014555","PERMIT 6054-RR","WILCOX PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","6054-R-R","09061274/11061606","DEACON, BRETT; DEACON, PAUL K.","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","11","39.0 N","8.0 E","N","","","","","405522.0","4166007.0","37.636350","-106.070820","02/18/2020 16:45","https://dwr.state.co.us/Tools/Structures/2014555", +"2014556","PERMIT 42721-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","42721-F","212483454","BEIRIGER, JAMES & SHARON","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","40.0 N","10.0 E","N","","","","","420699.6","4178288.0","37.748465","-105.900151","07/17/2020 09:47","https://dwr.state.co.us/Tools/Structures/2014556", +"2014557","PERMIT 43790-F","HUMIDIFICATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","43790-F","20300459","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2020","10/31/2025","3","20","SAGUACHE","","","","NE","NW","34","41.0 N","9.0 E","N","2077","W","130","N","414022.7","4179949.0","37.762831","-105.976130","01/12/2024 13:26","https://dwr.state.co.us/Tools/Structures/2014557", +"2014559","17CW0011 WELL NO. 3-R CONFINED","M4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","17CW0011","84134-F","01210698","NISSEN LAND LLLP; NISSEN, ERIN","RGWCD SD1","10/31/2021","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","39.0 N","10.0 E","N","","","","","420052.0","4164257.0","37.621952","-105.905959","12/01/2022 14:37","https://dwr.state.co.us/Tools/Structures/2014559", +"2014560","PERMIT 42536-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","138170-, 42536-F","20078042","BURRIS, JAKE; EL, LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","40.0 N","8.0 E","N","","","","","402648.7","4177841.5","37.742698","-106.104962","01/16/2024 11:00","https://dwr.state.co.us/Tools/Structures/2014560", +"2014561","PERMIT 22784-F","HOWEY STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22784-F","212161382","MITCHELL FAMILY FARMS, LLC","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","11","40.0 N","8.0 E","N","50","E","2600","N","406853.9","4176004.7","37.726586","-106.057003","01/11/2024 17:24","https://dwr.state.co.us/Tools/Structures/2014561", +"2014562","18CW3004 WELL NO. 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","18CW3004","302748-","11434","BROWNELL FARMS, LLC; SAND DUNE FARM (OSTERHOUT, ANNA); SAND DUNE FARM, LLC (BROWNELL, ANNA)","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NE","SW","5","40.0 N","9.0 E","N","","","","","410909.0","4177588.0","37.741256","-106.011189","01/17/2024 13:39","https://dwr.state.co.us/Tools/Structures/2014562", +"2014563","PERMIT 21576-F","BARELA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","21576-F","19861086","ALDERETE, LES; SKYLINE POTATO COMPANY","RGWCD SD1","10/31/2020","10/31/2025","3","20","SAGUACHE","","","","SE","SE","33","41.0 N","8.0 E","N","","","","","403575.0","4178676.0","37.750317","-106.094561","12/31/2025 09:30","https://dwr.state.co.us/Tools/Structures/2014563", +"2014564","20CW0007 WELL NO. 2-S","VERSAW #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0007","3260-F-R, 87855-F","21-02222","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2021","10/31/2025","3","20","SAGUACHE","","","","NE","NW","34","41.0 N","9.0 E","N","","","","","414111.0","4179686.0","37.760469","-105.975099","05/03/2023 10:34","https://dwr.state.co.us/Tools/Structures/2014564", +"2014565","PERMIT 83058-F","FIELD #39, PART. REPLACE. FOR 2006597","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","83058-F","23-07618-06","NYE, KENDALL; RIO ALAMOSA FARM, LLC","RGWCD SD1","10/31/2024","10/31/2025","3","20","ALAMOSA","","","","NW","SE","31","40.0 N","10.0 E","N","","","","","419343.0","4169109.0","37.665624","-105.914536","02/06/2026 13:21","https://dwr.state.co.us/Tools/Structures/2014565", +"2014566","PERMIT NO 1233-RR","FIELD 1 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","1233-R-R","11060566/11060608","VAN TREESE, STEVEN & KARLA","RGWCD SD1","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","2","39.0 N","7.0 E","N","","","","","395813.0","4168512.0","37.657874","-106.181198","06/20/2025 10:39","https://dwr.state.co.us/Tools/Structures/2014566", +"2014567","17CW0011 WELL NO 3R UNCONFINED","M4 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","17CW0011","81845-F","15-12070-6","NISSEN, ERIN; THE NISSEN FAMILY TRUST","RGWCD SD1","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","39.0 N","10.0 E","N","","","","","420084.0","4164397.0","37.623222","-105.905619","11/05/2025 13:33","https://dwr.state.co.us/Tools/Structures/2014567", +"2014574","20CW0001 WELL NO. 2-AS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0001","85009-F, 86806-F","94-8-1947N","GARY V & CAROLYN JO SEGER TRUST","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","13","40.0 N","6.0 E","N","","","","","388565.0","4174932.0","37.714874","-106.264334","05/03/2023 10:35","https://dwr.state.co.us/Tools/Structures/2014574", +"2014575","20CW0006 WELL NO. 1-R-WEST","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0006","54340-, 90392-F","11577362","CATALANO, DWAYNE","RGWCD SD1","10/31/2021","10/31/2025","3","20","ALAMOSA","","","","SW","SW","19","39.0 N","9.0 E","N","","","","","408332.0","4162385.0","37.603993","-106.038522","01/17/2024 15:22","https://dwr.state.co.us/Tools/Structures/2014575", +"2014576","PERMIT 42237-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42237-F","212300308, 9817249","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2023","10/31/2025","3","20","SAGUACHE","","","","NW","NE","31","41.0 N","8.0 E","N","","","","","399637.0","4180029.0","37.762086","-106.139441","01/16/2024 12:05","https://dwr.state.co.us/Tools/Structures/2014576", +"2014577","PERMIT 42264-F","B3 STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42264-F","212061086","BKC, LLC; WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","5","40.0 N","8.0 E","N","","","","","400458.0","4178317.0","37.746748","-106.129887","01/16/2024 10:24","https://dwr.state.co.us/Tools/Structures/2014577", +"2014578","PERMIT 42265-F","B2 STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42265-F, 42265-F-R","212101356","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","6","40.0 N","8.0 E","N","","","","","400363.0","4178390.0","37.747395","-106.130975","01/11/2024 17:27","https://dwr.state.co.us/Tools/Structures/2014578", +"2014579","PERMIT 61648-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","61648-F","20007902","BOND - METZ FARMS INC.","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","31","40.0 N","8.0 E","N","","","","","400215.0","4168860.0","37.661499","-106.131349","01/17/2024 08:37","https://dwr.state.co.us/Tools/Structures/2014579", +"2014583","21CW0006 WELL NO. 1-RC","PERMIT 201011","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0006","201011-","21008061","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); SJ FARMS TRUST (MCCULLOUGH, STEVEN)","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","10","39.0 N","7.0 E","N","","","","","395341.0","4165822.0","37.633579","-106.186163","01/11/2024 09:20","https://dwr.state.co.us/Tools/Structures/2014583", +"2014591","21CW0028 WELL NO 1-R","SLVWCD CERTIFICATE 955","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","252091-, 85301-F","22016204","AGVANCE FARMLAND LLC; JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","32","40.0 N","8.0 E","N","","","","","401017.0","4170412.0","37.675572","-106.122468","01/17/2024 15:55","https://dwr.state.co.us/Tools/Structures/2014591", +"2014593","PERMIT 39103-F-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","39103-F, 39103-F-R","288200902532","MCCORMICK, JOHN & LINDA","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","33","40.0 N","8.0 E","N","","","","","402762.0","4169426.0","37.666873","-106.102552","08/17/2022 12:00","https://dwr.state.co.us/Tools/Structures/2014593", +"2014596","PERMIT 42590-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42590-F","11577353","HEERSINK, AUSTIN; LARUE FARMS (HEERSINK, BRUCE)","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","17","39.0 N","8.0 E","N","","","","","400344.0","4165631.0","37.632414","-106.129446","01/11/2024 09:19","https://dwr.state.co.us/Tools/Structures/2014596", +"2014598","PERMIT 43568-F","112 RENTAL STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","43568-F","19861088","BLUE SKY FARMS (SMARTT, PHILIP); SMARTT, PHILIP","RGWCD SD1","10/31/2021","10/31/2025","3","20","SAGUACHE","","","","SW","SW","34","41.0 N","8.0 E","N","","","","","403647.0","4178589.0","37.749541","-106.093732","01/16/2024 17:14","https://dwr.state.co.us/Tools/Structures/2014598", +"2014603","20CW0027 WELL NO. 1-R-S","REED 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0027","85495-F","10-00106-08","CONSAUL, SCOTT","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","8","40.0 N","8.0 E","N","","","","","401058.0","4175290.0","37.719535","-106.122666","12/01/2022 14:20","https://dwr.state.co.us/Tools/Structures/2014603", +"2014607","20CW0024 WELL NO. 6-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0024","132982-, 86840-F","22013263","BILLY & PAULINE BOND LIVING TRUST; BOND, RONALD W.","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","12","39.0 N","7.0 E","N","","","","","398510.0","4166516.0","37.640189","-106.150350","12/01/2022 14:20","https://dwr.state.co.us/Tools/Structures/2014607", +"2014610","22CW3046 WELL NO 2A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046","100187-, 100187--A","212651351","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","4","39.0 N","8.0 E","N","","","","","402634.0","4168678.0","37.660119","-106.103903","10/09/2024 14:12","https://dwr.state.co.us/Tools/Structures/2014610", +"2014612","19CW0004 WELL NO. 1-S","PERMIT 85398-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","19CW0004","85398-F","10061977, 20-03857-06","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2022","10/31/2025","3","20","ALAMOSA","","","","SE","NW","28","39.0 N","9.0 E","N","","","","","411910.0","4161882.0","37.599810","-105.997932","12/01/2022 14:22","https://dwr.state.co.us/Tools/Structures/2014612", +"2014613","21CW0010 WELL NO. 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0010","87726-F","212253629","CLEAR WATER FARMS (MINER, CRAIG & CHRIS); MINER, CRAIG","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","8","39.0 N","8.0 E","N","","","","","400316.0","4167234.0","37.646857","-106.129982","01/12/2024 15:50","https://dwr.state.co.us/Tools/Structures/2014613", +"2014615","22CW3046 EAST BOYCE WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW3046","319209-, 87611-F","19852950","WORLEY FAMILY FARMS LLLP","RGWCD SD1","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","35","40.0 N","8.0 E","N","","","","","405194.0","4170347.0","37.675427","-106.075101","10/09/2024 16:18","https://dwr.state.co.us/Tools/Structures/2014615", +"2014619","21CW0007 WELL NO. 1SS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0007, 24CW0007","86372-F, 90374-F","05062230/12230527","MYERS, JARED S.","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","SW","SW","29","41.0 N","9.0 E","N","","","","","410257.0","4180091.0","37.763749","-106.018897","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2014619", +"2014627","20CW0028 WELL NO. 8-R","REPLACES 2010016","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0028","85227-F","20-06162-08","JIM MCCULLOUGH FARMS LLC (SHIRLEY, MINDY); MAC AG INC; MCCULLOUGH, STEVEN J.","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","22","40.0 N","8.0 E","N","","","","","403982.0","4173220.0","37.701192","-106.089221","09/01/2023 21:20","https://dwr.state.co.us/Tools/Structures/2014627", +"2014629","21CW0023 WELL NO. 2-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0023","86519-F","09212317/12061441, 24-02073-8","DIAZ FAMILY FARMS LLLP; DIAZ, MIGUEL","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","26","39.0 N","8.0 E","N","","","","","406507.0","4161554.0","37.596320","-106.059088","04/13/2023 12:46","https://dwr.state.co.us/Tools/Structures/2014629", +"2014630","21CW0009 WELL NO. 4-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0009","154589-","22037065","MCCOY, JASON D. & BRANDI L.","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","18","39.0 N","8.0 E","N","","","","","398685.0","4164105.0","37.618481","-106.148033","12/01/2022 14:16","https://dwr.state.co.us/Tools/Structures/2014630", +"2014631","21CW0038 WELL NO 1S FIELD 2","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0038","86885-F","09061315/12212590","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NE","NE","20","40.0 N","9.0 E","N","","","","","411559.0","4173536.0","37.704802","-106.003320","11/05/2025 13:31","https://dwr.state.co.us/Tools/Structures/2014631", +"2014632","21CW0039 WELL NO 2S","FIELD #8 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0039","86894-F","21-08255-08","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NW","NE","5","40.0 N","9.0 E","N","","","","","410979.0","4178123.0","37.746084","-106.010460","11/05/2025 13:29","https://dwr.state.co.us/Tools/Structures/2014632", +"2014633","21CW0038 WELL NO. 1S FIELD 4","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0038","86886-F","09061281","SMARTT, PHILIP; SMARTT, PHILIP E. & NINA J.","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","SE","SE","20","40.0 N","9.0 E","N","","","","","411320.0","4172176.0","37.692523","-106.005865","11/05/2025 13:31","https://dwr.state.co.us/Tools/Structures/2014633", +"2014634","21CW0034 WELL NO 1S","EAST GUNTHER SUPPLEMENTAL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0034","86882-F","07060382/07060936","GUNTHER, GERALD D.; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2023","10/31/2025","3","20","SAGUACHE","","","","SW","SW","26","41.0 N","7.0 E","N","","","","","395800.0","4180120.0","37.762477","-106.183008","11/05/2025 13:31","https://dwr.state.co.us/Tools/Structures/2014634", +"2014635","22CW0006 WELL NO. 1R","BIN 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0006","252753--A","20-006501","HARRISON, BRIAN & TERRY","RGWCD SD1","10/31/2022","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","15","40.0 N","7.0 E","N","","","","","395420.0","4173734.0","37.704887","-106.186402","11/05/2025 13:25","https://dwr.state.co.us/Tools/Structures/2014635", +"2014639","22CW0023 WELL NO 11-R-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0023","87990-F","08223645/12212595","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2024","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","14","40.0 N","7.0 E","N","","","","","395796.0","4174495.0","37.711787","-106.182247","02/06/2026 13:28","https://dwr.state.co.us/Tools/Structures/2014639", +"2014640","22CW0023 WELL NO 2RS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0023","88031-F","09212324/06214537","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2024","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","2","40.0 N","7.0 E","N","","","","","396941.0","4177727.0","37.741042","-106.169717","02/06/2026 13:29","https://dwr.state.co.us/Tools/Structures/2014640", +"2014641","22CW0023 WELL NO 3-R-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","","09061939/12061516","HENNIGH, TEDD; HENNIGH, TEDD & CANDICE","RGWCD SD1","10/31/2024","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","7","40.0 N","8.0 E","N","","","","","398769.0","4176091.0","37.726503","-106.148745","02/06/2026 13:29","https://dwr.state.co.us/Tools/Structures/2014641", +"2014642","22CW0039 WELL NO 8R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0039","56318-, 90503-F","2708072","CARPENTER, CODY; GOEHL RANCHES","RGWCD SD1","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","16","40.0 N","8.0 E","N","","","","","402031.0","4174575.0","37.713196","-106.111531","02/06/2026 13:29","https://dwr.state.co.us/Tools/Structures/2014642", +"2014644","22CW0040 WELL NO 1S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0040","88944-F","12061188/12061389","VERSAW, CHARLIE J.","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","NW","SE","27","41.0 N","9.0 E","N","","","","","414411.0","4180787.0","37.770419","-105.971824","11/05/2025 13:27","https://dwr.state.co.us/Tools/Structures/2014644", +"2014645","23CW0001 WELL NO 2SS","MYERS 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0001","88297-F","05062231/05062204","CONSAUL, SCOTT; LINDA K. HAVERLAND TRUST (HAVERLAND, LINDA K.)","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","NE","NE","29","41.0 N","9.0 E","N","","","","","411577.0","4181568.0","37.777188","-106.004093","02/06/2026 13:30","https://dwr.state.co.us/Tools/Structures/2014645", +"2014654","23CW2 WELL NO 3R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0002","88977-F","222243959","CARPENTER, CODY; VICKI SUE BAMBER TRUST","RGWCD SD1","10/31/2024","10/31/2025","3","20","ALAMOSA","","","","NE","NE","19","40.0 N","9.0 E","N","","","","","410081.0","4173517.0","37.704487","-106.020082","02/23/2026 08:44","https://dwr.state.co.us/Tools/Structures/2014654", +"2014655","23CW0014 WELL NO 7-S-S","MYERS 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0014","88885-F","05083049/05083097","CONSAUL, SCOTT","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","NE","SW","35","41.0 N","9.0 E","N","","","","","415650.0","4179142.0","37.755710","-105.957566","02/06/2026 11:26","https://dwr.state.co.us/Tools/Structures/2014655", +"2014656","23CW0003 WELL NO 2R COMMERCIAL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0003","155178--A, 89946-F","22034087","BIEL, THOMAS; HOOPER RIDGE FARMS, LLC (BIEL, THOMAS)","RGWCD SD1","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","SE","NE","6","40.0 N","10.0 E","N","","","","","419775.0","4177582.0","37.742022","-105.910572","02/06/2026 11:46","https://dwr.state.co.us/Tools/Structures/2014656", +"2014658","23CW0017 WELL NO 1S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0017","89136-F","23-06552-08","WELCH, LEE A.","RGWCD SD1","10/31/2024","10/31/2025","3","20","ALAMOSA","","","","NW","NE","17","40.0 N","9.0 E","N","","","","","411336.0","4175140.0","37.719236","-106.006045","11/05/2025 13:22","https://dwr.state.co.us/Tools/Structures/2014658", +"2014659","23CW3013 WELL NO 1S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3013","88980-F, 90546-F","10062708/072017003084","ARTAECHEVARRIA, ASIER; ARTAECHEVARRIA, JOHN","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","NW","SE","29","41.0 N","10.0 E","N","","","","","421001.0","4180787.0","37.771013","-105.897007","05/15/2025 14:58","https://dwr.state.co.us/Tools/Structures/2014659", +"2014666","23CW3011 WELL NO 6S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3011","89454-F","09061938/09062009","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2025","10/31/2025","3","20","ALAMOSA","","","","NW","SW","1","39.0 N","10.0 E","N","","","","","426164.0","4167746.0","37.653914","-105.837066","02/06/2026 11:48","https://dwr.state.co.us/Tools/Structures/2014666", +"2014667","23CW3011 WELL NO 11S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW3011","89471-F","09061938/09062009","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD1","10/31/2025","10/31/2025","3","20","ALAMOSA","","","","SW","NW","1","39.0 N","10.0 E","N","","","","","426409.0","4167922.0","37.655520","-105.834307","02/06/2026 11:50","https://dwr.state.co.us/Tools/Structures/2014667", +"2014671","24CW0004 WELL NO 1-SS","BIGELOW 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","24CW0004","333393-, 89116-F","12061290/12061306","CONSAUL, SCOTT","RGWCD SD1","10/31/2024","10/31/2025","3","20","SAGUACHE","","","","SW","SE","25","41.0 N","9.0 E","N","","","","","417521.0","4180094.0","37.764460","-105.936437","05/13/2025 10:28","https://dwr.state.co.us/Tools/Structures/2014671", +"2702003","SURFACE CAN PUMP CRESTONE VIEW","","Active Structure with contemporary diversion records (A)","PUMP","LA GARITA CREEK","00189521","","","","04128388/062019000986, 12204456/12204357","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2025","10/31/2025","3","27","SAGUACHE","","","","NW","NE","11","41.0 N","7.0 E","N","","","","","396567.0","4186416.0","37.819299","-106.175200","02/06/2026 16:08","https://dwr.state.co.us/Tools/Structures/2702003", +"2705000","W0059 WELL NO 01","DAVIS FARM #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0059","6059-R","21-00640-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2013","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","17","41.0 N","8.0 E","N","","","","","400530.0","4183320.0","37.791840","-106.129756","02/06/2026 16:08","https://dwr.state.co.us/Tools/Structures/2705000", +"2705004","W1357 WELL NO 02","COORS 1 OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1357","10182-R","12062617/12062666","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","15","41.0 N","8.0 E","N","","","","","403761.0","4184131.0","37.799495","-106.093173","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705004", +"2705006","W1503 WELL NO 01","7-W. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W1503","16015-F, 16015-F-R","11061707/11061755","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","3","41.0 N","7.0 E","N","","","","","394182.0","4186958.0","37.823910","-106.202372","01/16/2006 15:08","https://dwr.state.co.us/Tools/Structures/2705006", +"2705008","W1510 WELL NO IRR 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1510","5341-F, 6840-R","25-05777-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","21","41.0 N","8.0 E","N","","","","","402070.0","4181733.0","37.777705","-106.112054","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705008", +"2705010","W1510 WELL NO IRR 04","48 SW ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1510","6843-R","24-00685-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","20","41.0 N","8.0 E","N","","","","","401245.0","4181804.0","37.778257","-106.121430","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705010", +"2705011","W1633 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1633","18210-R","062015000844, 06-6-2094","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD1","10/31/2013","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","23","42.0 N","7.0 E","N","","","","","395952.0","4191668.0","37.866556","-106.182942","08/01/2013 14:08","https://dwr.state.co.us/Tools/Structures/2705011", +"2705012","W1633 WELL NO 02","10 PUMP BY DAVE'S HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3000, W1633","13771-R","07-10-1046","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","26","42.0 N","7.0 E","N","","","","","395927.0","4190769.0","37.858452","-106.183096","01/18/2013 11:09","https://dwr.state.co.us/Tools/Structures/2705012", +"2705015","W2543 WELL NO 03","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2543","498-R, 10577-F-R","062013004254/08062026","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","","SE","SE","11","41.0 N","7.0 E","N","","","","","397332.0","4185008.0","37.806698","-106.166310","08/06/2015 16:24","https://dwr.state.co.us/Tools/Structures/2705015", +"2705016","W0259 WELL NO 02","HAYSHED WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0034, W0259","6425-R, 13425-F","082015000885","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","SW","10","41.0 N","7.0 E","N","","","","","394179.0","4185807.0","37.813538","-106.202237","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705016", +"2705018","W0289 WELL NO 02","MIDDLE FUCHS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0289","1109-R","101033/12062725","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","21","41.0 N","7.0 E","N","","","","","392463.0","4182606.0","37.784492","-106.221254","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705018", +"2705022","W0442 WELL NO 01","P2 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0442","11657-R","100805/11061553","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","3","41.0 N","8.0 E","N","","","","","404641.0","4187307.0","37.828208","-106.083597","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705022", +"2705039","W3635 WELL NO 02R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3635","12619-R","10063620/10063657","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","19","41.0 N","8.0 E","N","","","","","400057.0","4182108.0","37.780867","-106.134960","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705039", +"2705042","W0901 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0901, W3899","11517-R","10061913/10062070","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","14","41.0 N","7.0 E","N","","","","","395670.0","4183469.0","37.792641","-106.184965","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705042", +"2705044","W2467 WELL NO 01","#34 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2467","5408-F","23-02325-08","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","16","41.0 N","7.0 E","N","","","","","393330.0","4185015.0","37.806302","-106.211764","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705044", +"2705045","W2418 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2418","892-R, 53415-F","12062565/01201346, 16-13807-8","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","23","41.0 N","9.0 E","N","","","","","415849.0","4182803.0","37.788721","-105.955732","01/16/2008 10:52","https://dwr.state.co.us/Tools/Structures/2705045", +"2705047","W2588 WELL NO 07","HAZARD #4 SW CRNR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","5206-F","10062740/09062023","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","18","41.0 N","8.0 E","N","","","","","399728.0","4183331.0","37.791852","-106.138865","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705047", +"2705048","W2588 WELL NO 09","HAZARD 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","5208-F","06201700233/10062829","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","18","41.0 N","8.0 E","N","","","","","399741.0","4184291.0","37.800504","-106.138850","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705048", +"2705049","W2588 WELL NO 13","HAZARD #3 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","784-R","09061948/652018002651","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","19","41.0 N","8.0 E","N","","","","","399687.0","4182601.0","37.785269","-106.139229","02/05/2026 16:40","https://dwr.state.co.us/Tools/Structures/2705049", +"2705050","W2588 WELL NO 16","HAZARD #6 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2588","5327-F","09061953/09062018","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","7","41.0 N","8.0 E","N","","","","","399759.0","4185043.0","37.807283","-106.138749","10/20/1988 00:00","https://dwr.state.co.us/Tools/Structures/2705050", +"2705052","W1964 WELL NO 21","BIGELOW 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1964","11641-R","12061275/01201349","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","24","41.0 N","9.0 E","N","","","","","416912.0","4181608.0","37.778049","-105.943524","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705052", +"2705053","W3275 WELL NO 03","DAVIS FARM #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3275","16815-F","21-00640-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","17","41.0 N","8.0 E","N","","","","","400924.0","4183708.0","37.795380","-106.125335","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705053", +"2705054","W3899 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3899","11516-R-R","","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2019","3","27","SAGUACHE","","","","NW","SE","14","41.0 N","7.0 E","N","","","","","396864.0","4183781.0","37.795588","-106.171451","01/23/2004 15:55","https://dwr.state.co.us/Tools/Structures/2705054", +"2705055","81CW081 WELL NO 07A","CONSAUL #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25121-F","10062740/09062023","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","18","41.0 N","8.0 E","N","","","","","400116.0","4183715.0","37.795355","-106.134512","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705055", +"2705056","81CW081 WELL NO 09A","HAZARD 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25122-F","06201700233/10062829","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","18","41.0 N","8.0 E","N","","","","","400131.0","4184514.0","37.802556","-106.134451","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705056", +"2705057","81CW081 WELL NO 13A","CONSAUL 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25120-F, 25120-F-R","09061948/652018002651","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","19","41.0 N","8.0 E","N","","","","","400082.0","4182964.0","37.788583","-106.134794","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705057", +"2705058","81CW081 WELL NO 16A","CONSAUL #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0081","25123-F","09061953/09062018","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","7","41.0 N","8.0 E","N","","","","","400150.0","4185329.0","37.809903","-106.134348","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705058", +"2705059","81CW123 WELL NO 21A","BIGELOW 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0123","24276-F","12061275/01201349","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","24","41.0 N","9.0 E","N","","","","","417072.0","4181999.0","37.781587","-105.941752","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705059", +"2705060","80CW038 WELL NO 01A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0038","23970-F, 23970-F-R","12062565/01201346, 16-13807-8","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","23","41.0 N","9.0 E","N","","","","","416246.0","4182799.0","37.788721","-105.951224","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705060", +"2705061","80CW012 WELL NO 04","#34 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0012","24011-F, 24011-F-R, 24011-F-R","10061922/10062034","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","9","41.0 N","7.0 E","N","","","","","393747.0","4185421.0","37.810009","-106.207088","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705061", +"2705065","81CW066 WELL NO 02R","G ROAD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0066","24884-F","12204454/12204359","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","35","42.0 N","7.0 E","N","","","","","397028.0","4188608.0","37.839104","-106.170275","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705065", +"2705066","82CW019 WELL NO 01A","P-2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0019","25444-F","100805/11061553","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","3","41.0 N","8.0 E","N","","","","","405075.0","4187705.0","37.831840","-106.078719","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705066", +"2705068","80CW126 WELL NO 01A","A3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","80CW0126","22832-F","09062717/11061545-100075","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","4","41.0 N","7.0 E","N","","","","","393784.0","4187070.0","37.824873","-106.206909","01/16/2006 16:44","https://dwr.state.co.us/Tools/Structures/2705068", +"2705070","80CW126 WELL NO 03R","A2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","80CW0126","19701-F, 19701-F-R","10061983/10062013-100305","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","4","41.0 N","7.0 E","N","","","","","392959.0","4187073.0","37.824803","-106.216282","10/20/1988 00:00","https://dwr.state.co.us/Tools/Structures/2705070", +"2705074","82CW093 WELL NO 04A","37-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0093","22149-F","09061960/09062007","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","5","41.0 N","10.0 E","N","","","","","420283.0","4187648.0","37.832782","-105.905914","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705074", +"2705075","W2536 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2536","13941-F","12061217/12061380","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","22","41.0 N","9.0 E","N","","","","","413407.0","4181617.0","37.777805","-105.983321","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705075", +"2705076","82CW084 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0084","25280-F","12061221/12061379","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","22","41.0 N","9.0 E","N","","","","","414605.0","4181996.0","37.781333","-105.969764","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705076", +"2705077","82CW172 WELL NO 01R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0172","9342-F-R","09212325/04060851","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","18","41.0 N","10.0 E","N","","","","","419460.0","4184408.0","37.803511","-105.914905","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705077", +"2705078","81CW088 WELL NO 05R","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0088","16559-F, 16559-F-R","09062764/10060101","NOLT, JOSEPH; NOLT, JOSEPH & ALMA J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","14","42.0 N","7.0 E","N","","","","","396438.0","4194292.0","37.890257","-106.177794","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705078", +"2705079","W3470 WELL NO 02A","WELCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3470","22123-F","10061913/10062070","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","14","41.0 N","7.0 E","N","","","","","396069.0","4183769.0","37.795390","-106.180477","01/23/2004 15:53","https://dwr.state.co.us/Tools/Structures/2705079", +"2705080","W3899 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3899","13864-R","09212332/06214536","SCHMIDT, BEN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","18","41.0 N","8.0 E","N","","","","","399348.0","4184517.0","37.802498","-106.143344","01/23/2004 15:54","https://dwr.state.co.us/Tools/Structures/2705080", +"2705082","82CW093 WELL NO 03R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0093","1287-R-R","07061146/07061155","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","1","41.0 N","9.0 E","N","","","","","417875.0","4187610.0","37.832226","-105.933270","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705082", +"2705084","82CW031 WELL NO 01A","T7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0031","25443-F","11061522/11061552-100804","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); PERRIN JR., J. V.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","3","41.0 N","8.0 E","N","","","","","404277.0","4187705.0","37.831756","-106.087786","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705084", +"2705085","W1912 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","8935-F","03060389/10242132","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2022","10/31/2025","3","27","SAGUACHE","","","","SE","NE","19","41.0 N","9.0 E","N","","","","","410196.0","4182491.0","37.785371","-106.019887","02/06/2026 16:09","https://dwr.state.co.us/Tools/Structures/2705085", +"2705086","83CW007 WELL NO 10A","SCF FIELD 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25692-F","03060389/10242132","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","20","41.0 N","9.0 E","N","","","","","410586.0","4182834.0","37.788500","-106.015501","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705086", +"2705087","W1912 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","8937-F","03060392/072017003077","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","","SE","NW","20","41.0 N","9.0 E","N","","","","","410982.0","4182481.0","37.785358","-106.010961","07/31/2015 09:42","https://dwr.state.co.us/Tools/Structures/2705087", +"2705088","83CW007 WELL NO 11A","SCF FIELD 16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25695-F","03060392/072017003077","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","20","41.0 N","9.0 E","N","","","","","411377.0","4182836.0","37.788595","-106.006519","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705088", +"2705089","W1912 WELL NO 12","FIELD 20 DRIP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","2597-F","03060394","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2013","10/31/2025","3","27","SAGUACHE","","","","SE","NW","17","41.0 N","9.0 E","N","","","","","410994.0","4184110.0","37.800039","-106.011024","06/14/2013 08:04","https://dwr.state.co.us/Tools/Structures/2705089", +"2705090","83CW007 WELL NO 12A","SCF FIELD 20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25697-F","03060394","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","17","41.0 N","9.0 E","N","","","","","411417.0","4184444.0","37.803090","-106.006261","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705090", +"2705091","W1912 WELL NO 13","SCF FIELD 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","7795-F","03060390","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","18","41.0 N","9.0 E","N","","","","","410211.0","4183236.0","37.792086","-106.019809","01/05/2009 14:27","https://dwr.state.co.us/Tools/Structures/2705091", +"2705092","83CW007 WELL NO 13A","SCF FIELD 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25694-F","03060390","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","17","41.0 N","9.0 E","N","","","","","410611.0","4183648.0","37.795838","-106.015317","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705092", +"2705093","W1912 WELL NO 14","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","2854-F","052018002650/03060431","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2022","10/31/2025","3","27","SAGUACHE","","","","SE","SW","17","41.0 N","9.0 E","N","","","","","410988.0","4183263.0","37.792406","-106.010989","02/06/2026 16:10","https://dwr.state.co.us/Tools/Structures/2705093", +"2705094","83CW007 WELL NO 14A","SCF FIELD 18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25698-F","052018002650/03060431","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","17","41.0 N","9.0 E","N","","","","","411392.0","4183642.0","37.795860","-106.006447","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705094", +"2705095","W1912 WELL NO 15","FIELD T-2 - CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","2853-F","09062694/10060174","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","8","41.0 N","9.0 E","N","","","","","411024.0","4185665.0","37.814056","-106.010875","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705095", +"2705096","83CW07 WELL NO 15-A","FIELD T-2 - CENTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0007","25696-F","09062694/10060174","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","8","41.0 N","9.0 E","N","","","","","411446.0","4186028.0","37.817368","-106.006125","04/13/2020 10:15","https://dwr.state.co.us/Tools/Structures/2705096", +"2705097","W1912 WELL NO 17","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","8933-F","03060401/1221629","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","20","41.0 N","9.0 E","N","","","","","410976.0","4181733.0","37.778616","-106.010937","01/08/2014 13:15","https://dwr.state.co.us/Tools/Structures/2705097", +"2705098","83CW007 WELL NO 17A","SCF FIELD 14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0007","25693-F","03060401/1221629","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","20","41.0 N","9.0 E","N","","","","","411369.0","4182022.0","37.781259","-106.006510","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705098", +"2705099","W2067 WELL NO 04","SEE COMMENTS, SOLAR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W2067","14033-R","11-1047","KOEHN, MARK; TOEWS, TREVOR & TERESA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","NE","SW","20","41.0 N","7.0 E","N","","","","","391428.0","4182605.0","37.784361","-106.233005","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705099", +"2705100","82CW066 WELL NO 04A","GIFFORD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","82CW0066","24497-F","20-00158-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SASCO, LLC (SCHRECK, MIKE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","NE","20","41.0 N","7.0 E","N","","","","","392043.0","4182610.0","37.784479","-106.226023","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705100", +"2705101","83CW029 WELL NO 01A","LLL#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0029","25281-F","12061217/12061380","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","22","41.0 N","9.0 E","N","","","","","413804.0","4181998.0","37.781276","-105.978859","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705101", +"2705102","W1562 WELL NO 01","SUP 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0036, W1562","11716-R","04061991/04062019","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","9","41.0 N","9.0 E","N","","","","","411841.0","4185649.0","37.813991","-106.001592","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705102", +"2705103","W3721 WELL NO. 01A","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0036, W3721","20164-F","18-10858","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","9","41.0 N","9.0 E","N","","","","","412231.0","4186036.0","37.817516","-105.997209","09/27/2018 09:26","https://dwr.state.co.us/Tools/Structures/2705103", +"2705104","W1562 WELL NO 04","SUP 18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1562","11717-R","04061986/04062038","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","8","41.0 N","9.0 E","N","","","","","411828.0","4185208.0","37.810015","-106.001686","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705104", +"2705105","W3722 WELL NO C&W 01","15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721, W3722","19778-F","04061991/04062019","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","9","41.0 N","9.0 E","N","","","","","413019.0","4186029.0","37.817528","-105.988256","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705105", +"2705106","W3722 WELL NO C&W 07","SCF FIELD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721, W3722","19786-F","03060408/052018001072","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","10","41.0 N","9.0 E","N","","","","","413849.0","4186025.0","37.817571","-105.978827","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705106", +"2705107","W1562 WELL NO 05","SUP 19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1562","11718-R","07060365/07060945","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","9","41.0 N","9.0 E","N","","","","","411847.0","4184873.0","37.806998","-106.001429","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705107", +"2705108","W3721 WELL NO 02A","18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721","20166-F","04061986/04062038","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","9","41.0 N","9.0 E","N","","","","","412218.0","4185232.0","37.810269","-105.997259","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705108", +"2705109","W3722 WELL NO C&W 02","19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721, W3722","19779-F, 19779-F-R","07060365/07060945","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","9","41.0 N","9.0 E","N","","","","","412997.0","4185247.0","37.810479","-105.988412","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705109", +"2705110","W0240 WELL NO 01","SCF FIELD 9-CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0240","13016-R","06113556/12062769","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","3","41.0 N","9.0 E","N","","","","","413472.0","4186450.0","37.821365","-105.983160","01/05/2009 14:24","https://dwr.state.co.us/Tools/Structures/2705110", +"2705111","W3721 WELL NO 04A","SCF FIELD 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W3721","20165-F","02061554","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","3","41.0 N","9.0 E","N","","","","","413851.0","4186826.0","37.824790","-105.978899","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705111", +"2705112","W3722 WELL NO C&W 03","SCF FIELD 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721, W3722","19780-F","02061560","SKYLINE LAND COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","3","41.0 N","9.0 E","N","","","","","414657.0","4186829.0","37.824892","-105.969743","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705112", +"2705113","W0240 WELL NO 02","SCF FIELD 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0240","13017-R","02061554","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","3","41.0 N","9.0 E","N","","","","","413477.0","4186827.0","37.824763","-105.983149","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705113", +"2705114","W3722 WELL NO C&W-8","SCF FIELD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W3721, W3722","21255-F","02061559/07242526","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","3","41.0 N","9.0 E","N","","","","","413865.0","4187637.0","37.832099","-105.978837","11/24/2010 13:38","https://dwr.state.co.us/Tools/Structures/2705114", +"2705115","W3722 WELL NO C&W 09","SCF FIELD 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3721, W3722","21256-F","02061553","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","3","41.0 N","9.0 E","N","","","","","414659.0","4187631.0","37.832120","-105.969815","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705115", +"2705116","79CW016 WELL NO 01","R-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0016","22918-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","NW","NE","2","41.0 N","7.0 E","N","","","","","397004.0","4187789.0","37.831721","-106.170431","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705116", +"2705117","82CW134 WELL NO 01S","R-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0134","25375-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","SW","NE","NE","2","41.0 N","7.0 E","N","","","","","397143.0","4187926.0","37.832971","-106.168871","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2705117", +"2705118","81CW148 WELL NO 01A","NORTH LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0148","19339-F","062015000844, 06-6-2094","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","23","42.0 N","7.0 E","N","","","","","396350.0","4191882.0","37.868530","-106.178449","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705118", +"2705120","82CW143 WELL NO 07R","F2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0143","13361-F-R","22-03468-08","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","14","41.0 N","8.0 E","N","","","","","405746.0","4183677.0","37.795611","-106.070571","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705120", +"2705122","82CW199 WELL NO 05R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0013, 82CW0199","390-R-R","17-08095-8","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","9","41.0 N","8.0 E","N","","","","","403373.0","4185312.0","37.810097","-106.097737","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705122", +"2705124","81CW148 WELL NO 03R","SOUTH LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","24CW3000, 81CW0148","22276-F","10242140/10242120","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","26","42.0 N","7.0 E","N","","","","","396334.0","4191060.0","37.861121","-106.178512","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705124", +"2705128","84CW060 WELL NO 01A","SMITH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0060","26852-F, 26852-F-R","12061183/12061408","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","5","41.0 N","8.0 E","N","","","","","401825.0","4187660.0","37.831090","-106.115639","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705128", +"2705129","81CW150 WELL NO 12","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0150","21997-F","10060663/10061132","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","10","41.0 N","8.0 E","N","","","","","404187.0","4185320.0","37.810254","-106.088492","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705129", +"2705130","81CW150 WELL NO 13","COORS 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0150","21998-F","12062624/12062651, 20013430","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NW","NW","10","41.0 N","8.0 E","N","","","","","403832.0","4186167.0","37.817850","-106.092637","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705130", +"2705131","81CW150 WELL NO 16","COORS 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0150","23871-F, 41062-F","12212647/12212610","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","1","41.0 N","8.0 E","N","","","","","408320.0","4187700.0","37.832127","-106.041848","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705131", +"2705132","84CW051 WELL NO 01R","COORS #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","10181-R-R","10060664/10661123","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","2","41.0 N","8.0 E","N","","","","","405839.0","4186898.0","37.824647","-106.069933","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705132", +"2705133","84CW051 WELL NO 03R","COORS #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","10183-R-R","10060652/10061132","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","10","41.0 N","8.0 E","N","","","","","404218.0","4186110.0","37.817377","-106.088245","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705133", +"2705134","84CW051 WELL NO 04R","COORS #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","10184-R-R","10060642/10061116","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","3","41.0 N","8.0 E","N","","","","","405034.0","4186899.0","37.824572","-106.079079","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705134", +"2705135","84CW051 WELL NO 05R","COORS #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","10185-R-R","10060665/10061121","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","11","41.0 N","8.0 E","N","","","","","405818.0","4186106.0","37.817507","-106.070069","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705135", +"2705136","84CW051 WELL NO 06R","QTR 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","10186-R-R","10060660/10061126","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","10","41.0 N","8.0 E","N","","","","","405013.0","4186114.0","37.817496","-106.079214","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705136", +"2705137","84CW051 WELL NO 08R","COORS 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","5427-F, 41064-F","03241863/03241850","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","1","41.0 N","8.0 E","N","","","","","407506.0","4187693.0","37.831981","-106.051096","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705137", +"2705138","84CW051 WELL NO 11R","COORS 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0051","2360-F, 2360-F-R, 2360-F-R","10060640/10061117","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","3","41.0 N","8.0 E","N","","","","","404263.0","4186904.0","37.824537","-106.087839","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705138", +"2705139","W0204 PUMP WELL NO 03","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0204","12227-R","16-13808-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","21","41.0 N","8.0 E","N","","","","","402830.0","4181794.0","37.778336","-106.103433","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705139", +"2705140","W3338 WELL NO PUMP 03A","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3338","19154-F","16-13808-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","21","41.0 N","8.0 E","N","","","","","403238.0","4182091.0","37.781056","-106.098841","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705140", +"2705143","W1826 WELL NO 01","SUP 13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1826","6432-F","02061552/02061585","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","12","41.0 N","8.0 E","N","","","","","407845.0","4185688.0","37.813947","-106.046989","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705143", +"2705147","80CW034 WELL NO 01","BIGELOW 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0034","24275-F","12061288/12061323","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","23","41.0 N","9.0 E","N","","","","","416254.0","4181998.0","37.781504","-105.951040","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705147", +"2705148","87CW020 WELL NO 01S","BIGELOW 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0020","27772-F","12061288/12061323","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","SW","SE","23","41.0 N","9.0 E","N","","","","","416246.0","4181791.0","37.779637","-105.951107","02/17/1989 00:00","https://dwr.state.co.us/Tools/Structures/2705148", +"2705149","W3363 WELL NO ALT 02","NORTH FUCHS PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3363","19985-F, 19985-F-R","101031/12062729","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","16","41.0 N","7.0 E","N","","","","","392865.0","4183401.0","37.791703","-106.216807","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705149", +"2705150","W1511 WELL NO 01","46-SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1511","11917-R","07-10-1019","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","21","41.0 N","8.0 E","N","","","","","402878.0","4182505.0","37.784749","-106.102984","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705150", +"2705151","W3777 WELL NO 01A","46-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3777","20581-F","08062034/08061967","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","21","41.0 N","8.0 E","N","","","","","403307.0","4182887.0","37.788237","-106.098163","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705151", +"2705152","W0289 WELL NO 03","WELL AT FRED'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0289","1110-R","101029/12062728","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","21","41.0 N","7.0 E","N","","","","","392447.0","4182167.0","37.780534","-106.221370","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705152", +"2705154","W3556 WELL NO 01A","PIERCE - NORTH OF PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3556","20458-F, 20458-F-R","17-10390-08","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","22","41.0 N","7.0 E","N","","","","","394485.0","4182969.0","37.787999","-106.198348","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705154", +"2705156","W3545 WELL NO 03A","48-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3545","20582-F","24-00685-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","20","41.0 N","8.0 E","N","","","","","401630.0","4182109.0","37.781047","-106.117100","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705156", +"2705158","W3753 WELL NO 01A","W4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3753","20868-F","20-03589-08","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","7","41.0 N","9.0 E","N","","","","","409042.0","4185267.0","37.810274","-106.033339","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705158", +"2705159","W1912 WELL NO 01","W4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1912","7721-F","20-03589-08","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","7","41.0 N","9.0 E","N","","","","","408841.0","4184896.0","37.806910","-106.035576","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705159", +"2705160","W3720 WELL NO 01A","26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","20974-F","04060820/04060850","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","18","41.0 N","9.0 E","N","","","","","409019.0","4183657.0","37.795762","-106.033398","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705160", +"2705161","W1028 WELL NO 01","SUP 27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0036, W1028","10623-F","04060825/04060859","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","SW","18","41.0 N","9.0 E","N","","","","","409399.0","4183256.0","37.792186","-106.029033","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705161", +"2705162","W3720 WELL NO 02A","#27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0036, W3720","21024-F","04060825/04060859","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","18","41.0 N","9.0 E","N","","","","","409815.0","4183653.0","37.795805","-106.024358","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705162", +"2705164","W3720 WELL NO 03A","#22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0024, 09CW0006, W3720","21025-F","07060367/07060947, 18-10859-08","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","18","41.0 N","9.0 E","N","","","","","409025.0","4184474.0","37.803126","-106.033433","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705164", +"2705165","W1494 WELL NO 01","FIELD 22 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0024, 09CW0006, W1494","10415-F","062013000930/04062014","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","18","41.0 N","9.0 E","N","","","","","408634.0","4184100.0","37.799716","-106.037826","07/23/2021 15:50","https://dwr.state.co.us/Tools/Structures/2705165", +"2705166","W3720 WELL NO 04A","#23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","21026-F","04060822, 07060394/07060925","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","18","41.0 N","9.0 E","N","","","","","409822.0","4184472.0","37.803187","-106.024380","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705166", +"2705167","W1494 WELL NO 02","SUPP 22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0006, W1494","10416-F","07060367/07060947, 18-10859-08","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2018","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","18","41.0 N","9.0 E","N","","","","","409430.0","4184099.0","37.799786","-106.028786","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705167", +"2705168","W3720 WELL NO 05A","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","20970-F","02061547/02061571","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","4","41.0 N","9.0 E","N","","","","","412236.0","4186838.0","37.824744","-105.997249","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705168", +"2705169","W1912 WELL NO 06","SUP 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1912","11337-R","04061998/04062011","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","5","41.0 N","9.0 E","N","","","","","411841.0","4186468.0","37.821371","-106.001692","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705169", +"2705170","W3720 WELL NO 06A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","20971-F, 20971-F-R","04061998/04062011","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","4","41.0 N","9.0 E","N","","","","","413038.0","4186828.0","37.824730","-105.988136","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705170", +"2705171","PERMIT 46704-F","CELLAR ON QTR #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","46704-F","8914599","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA","RGWCD SD1","10/31/2017","10/31/2025","3","27","SAGUACHE","","","","NE","SE","9","41.0 N","8.0 E","N","","","","","403719.0","4185657.0","37.813242","-106.093853","01/08/2024 13:02","https://dwr.state.co.us/Tools/Structures/2705171", +"2705172","W3720 WELL NO 07A","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","20972-F","04060180/04060135","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","4","41.0 N","9.0 E","N","","","","","412251.0","4187657.0","37.832126","-105.997178","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705172", +"2705173","W1912 WELL NO 07","SUP II","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1912","11336-R","02061547/02061571","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","4","41.0 N","9.0 E","N","","","","","411854.0","4186847.0","37.824788","-106.001590","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705173", +"2705174","W3720 WELL NO 08A","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3720","20973-F","03062364/03062395","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","4","41.0 N","9.0 E","N","","","","","413048.0","4187658.0","37.832211","-105.988123","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705174", +"2705175","PERMIT 48608-F","BIGELOW STORAGE BINS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","48608-F","212517175/4872","CONSAUL, SCOTT","RGWCD SD1","10/31/2022","10/31/2025","3","27","SAGUACHE","","","","SE","SE","23","41.0 N","9.0 E","N","","","","","416489.0","4181640.0","37.778299","-105.948331","01/08/2024 13:08","https://dwr.state.co.us/Tools/Structures/2705175", +"2705176","W3892 WELL NO 07A","FIELD #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3892","22155-F","GP13-4824-8","ROCKEY FARMS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","19","41.0 N","8.0 E","N","","","","","399274.0","4182109.0","37.780790","-106.143850","11/07/2008 15:39","https://dwr.state.co.us/Tools/Structures/2705176", +"2705178","W3705 WELL NO S 01A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3705","21927-F","06-8-4930","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","19","41.0 N","9.0 E","N","","","","","408993.0","4182033.0","37.781125","-106.033490","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705178", +"2705180","W3949 WELL NO 02A","GUNBARREL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3949","22623-F","05061447/05061476","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); SCHRECK, DEREK & AMANDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","24","41.0 N","7.0 E","N","","","","","398472.0","4182933.0","37.788127","-106.153071","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705180", +"2705181","W0311 WELL NO 02","GUNBARREL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0311","1582-R","05061447/05061476","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","24","41.0 N","7.0 E","N","","","","","398082.0","4182633.0","37.785380","-106.157458","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705181", +"2705182","79CW001 WELL NO 05A","NF #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0027, 79CW0001","23448-F","12062614/12062703","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","6","41.0 N","8.0 E","N","","","","","400196.0","4186906.0","37.824119","-106.134043","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705182", +"2705184","W3469 WELL NO 02","A5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3469","10308-R","10061885/10062092","ADKINS, CATHERINE C.; ADKINS, CINDY T.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","NW","3","41.0 N","7.0 E","N","","","","","394593.0","4187853.0","37.832022","-106.197833","10/23/2008 14:11","https://dwr.state.co.us/Tools/Structures/2705184", +"2705185","W0419 WELL NO 03","A6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0419","2191-F","09062720/10060145","ADKINS, CATHERINE C.; ADKINS, CINDY T.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","NE","4","41.0 N","7.0 E","N","","","","","393412.0","4188264.0","37.835589","-106.211311","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705185", +"2705186","W3486 WELL NO 02A","B1-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W3486","19065-F, 19065-F-R","","TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2017","3","27","SAGUACHE","","","","SW","SE","5","41.0 N","7.0 E","N","","","","","392161.0","4187056.0","37.824556","-106.225345","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705186", +"2705188","W3581 WELL NO 10A","FIELD 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3581","20545-F","02061551/04201664","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","36","42.0 N","8.0 E","N","","","","","407572.0","4189314.0","37.846596","-106.050553","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705188", +"2705190","W3906 WELL NO 08A","FORD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3906","22911-F","05060250/05060256","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","11","41.0 N","8.0 E","N","","","","","406607.0","4185291.0","37.810244","-106.061001","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705190", +"2705192","79CW044 WELL NO 04A","CLAYTON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0044","24148-F","04061999/04062010","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","24","41.0 N","7.0 E","N","","","","","398458.0","4182133.0","37.780916","-106.153118","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705192", +"2705193","W2360 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2360","642-R","04061999/04062010","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","24","41.0 N","7.0 E","N","","","","","398060.0","4181820.0","37.778051","-106.157593","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705193", +"2705194","79CW047 WELL NO 04A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0047","22622-F","21-04014-08","DAVIS, STEVEN & KAREN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","24","41.0 N","7.0 E","N","","","","","397684.0","4182933.0","37.788039","-106.162019","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705194", +"2705195","W0311 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0311","1584-R","21-04014-08","DAVIS, STEVEN & KAREN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","24","41.0 N","7.0 E","N","","","","","397278.0","4182746.0","37.786308","-106.166603","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705195", +"2705196","79CW073 WELL NO 01A","#33 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0073","24014-F","10061939","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","10","41.0 N","7.0 E","N","","","","","395358.0","4186187.0","37.817098","-106.188901","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705196", +"2705197","W0203 WELL NO 01","33-CW/36-CW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0034, 12CW0041, W0203","480-R","21-05868, GP12-6362-8","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","","SW","NE","10","41.0 N","7.0 E","N","","","","","394971.0","4186004.0","37.815404","-106.193270","01/16/2014 12:51","https://dwr.state.co.us/Tools/Structures/2705197", +"2705198","79CW052 WELL NO 01A","BARTEE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0018, 79CW0052","20573-F, 20573-F-R, 87895-F","15-06957-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","17","41.0 N","8.0 E","N","","","","","400950.0","4184504.0","37.802556","-106.125148","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705198", +"2705199","W0679 WELL NO 01","BARTEE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0018, W0679","11179-R, 84933-F, 87896-F","15-06957-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","17","41.0 N","8.0 E","N","","","","","400555.0","4184125.0","37.799097","-106.129582","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705199", +"2705200","W3967 WELL NO 26","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23563-F","03060381/03060422","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","5","41.0 N","9.0 E","N","","","","","411434.0","4186841.0","37.824693","-106.006361","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705200", +"2705201","W0854 WELL NO 10","SUP 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","6639-F","03060381/03060422","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","5","41.0 N","9.0 E","N","","","","","411212.0","4186450.0","37.821148","-106.008835","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705201", +"2705202","W3967 WELL NO 32","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23566-F","04060812/04060865","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","5","41.0 N","9.0 E","N","","","","","410676.0","4187668.0","37.832072","-106.015075","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705202", +"2705203","W0854 WELL NO 08","SUP 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","6637-F","062013000925/08060435","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","5","41.0 N","9.0 E","N","","","","","410219.0","4186463.0","37.821168","-106.020118","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705203", +"2705204","W0854 WELL NO 09","SUP 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","6638-F","04060812/04060865","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","5","41.0 N","9.0 E","N","","","","","410618.0","4187267.0","37.828453","-106.015685","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705204", +"2705205","W3967 WELL NO 33","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23567-F","11060585/11060605","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","5","41.0 N","9.0 E","N","","","","","411450.0","4187657.0","37.832048","-106.006279","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705205", +"2705206","W3967 WELL NO 02A","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23824-F","04060841/04062017","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","6","41.0 N","9.0 E","N","","","","","409090.0","4186867.0","37.824697","-106.032995","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705206", +"2705207","W0854 WELL NO 02","SUP 8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","11729-R","11060586/11060604","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","6","41.0 N","9.0 E","N","","","","","408823.0","4186480.0","37.821183","-106.035979","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705207", +"2705208","W3967 WELL NO 03A","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23825-F","062013000929/04060868","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","6","41.0 N","9.0 E","N","","","","","409149.0","4187682.0","37.832047","-106.032427","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705208", +"2705209","W0854 WELL NO 03","SUP 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","11730-R","062013000929/04060868","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","6","41.0 N","9.0 E","N","","","","","408938.0","4187303.0","37.828611","-106.034777","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705209", +"2705210","W3967 WELL NO 07A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23826-F","07060378/07060950, 10061958/01201342","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","6","41.0 N","9.0 E","N","","","","","409905.0","4187677.0","37.832077","-106.023836","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705210", +"2705213","80CW015 WELL NO 05A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0015","22825-F","09062767/10060081","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","16","41.0 N","8.0 E","N","","","","","402539.0","4183704.0","37.795517","-106.106994","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705213", +"2705215","80CW028 WELL NO 01A","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0005, 80CW0028","24756-F, 89616-F","11060497/11060665","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","17","41.0 N","8.0 E","N","","","","","401723.0","4183710.0","37.795484","-106.116261","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705215", +"2705216","W0726 WELL NO 01","FIELD 9 STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0005, W0726","13651-R, 89618-F","9079107","GREEMAN, DEE; PRICE, ANDREW JOHN & AMBER LYNN; PRICE, J. TRUMAN & EVELYN C.","RGWCD SD1","10/31/2021","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","17","41.0 N","8.0 E","N","","","","","401319.0","4183317.0","37.791899","-106.120796","02/06/2026 16:10","https://dwr.state.co.us/Tools/Structures/2705216", +"2705217","79CW042 WELL NO 01A","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0042","24383-F","02061552/02061585","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","12","41.0 N","8.0 E","N","","","","","408227.0","4186086.0","37.817573","-106.042700","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705217", +"2705218","79CW042 WELL NO 02A","16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0042","23498-F","04061983/12212600","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","12","41.0 N","8.0 E","N","","","","","408220.0","4185294.0","37.810435","-106.042679","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705218", +"2705222","87CW015 WELL NO 01A","GV-1 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","87CW0015","32699-F","08061992/08062010","GOOD, LAWRENCE & DOROTHY; TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","7","41.0 N","8.0 E","N","","","","","399358.0","4185331.0","37.809834","-106.143344","02/17/1989 00:00","https://dwr.state.co.us/Tools/Structures/2705222", +"2705223","W3628 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","95CW0025, W3628","23233-F, 28353-F","05063005/05063042","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","32","42.0 N","10.0 E","N","","","","","420294.0","4189256.0","37.847274","-105.905966","03/12/1996 00:00","https://dwr.state.co.us/Tools/Structures/2705223", +"2705224","80CW125 WELL NO 02R","A3 RESERVOIR (FOR A3 & A4)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","11CW0017, 80CW0125","11143-R-R","10061963/10062014-100303","ADKINS, CATHERINE C.; ADKINS, CINDY T.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","SE","33","42.0 N","7.0 E","N","","","","","393706.0","4188888.0","37.841246","-106.208063","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705224", +"2705225","W2137 WELL NO 01","WELL 1 CORNER OF A2 (A1 & A2)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W2137","11144-R","14-09901-10","ADKINS, CATHERINE C.; ADKINS, CINDY T.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","33","42.0 N","7.0 E","N","","","","","394229.0","4189045.0","37.842722","-106.202143","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705225", +"2705227","W2101 WELL NO 03","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0013, W2101","14880-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","SW","NE","28","42.0 N","7.0 E","N","","","","","393725.0","4190718.0","37.857739","-106.208116","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705227", +"2705228","W0893 WELL NO 05","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","13CW0013, W0893","1157-R","10062761/10062822","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","28","42.0 N","7.0 E","N","","","","","393463.0","4190695.0","37.857501","-106.211090","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705228", +"2705229","W2101 WELL NO 02","WELL 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0013, W2101","14879-R","10062762/10062815","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","28","42.0 N","7.0 E","N","","","","","393760.0","4191477.0","37.864582","-106.207830","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705229", +"2705230","W1759 WELL NO S16W","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W1759","10949-F, 10949-F-R","06-8-3841","TEMPLE, DANNY W. & DENISE M.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","NE","16","42.0 N","7.0 E","N","","","","","393924.0","4193946.0","37.886850","-106.206328","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705230", +"2705231","W2326 WELL NO 01","FIELD 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W2326","1550-R, 1550-R-R","07-10-1079","LAVERN & ELIZABETH YODER FAMILY LIVING TRUST (YODER, LAVERN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SE","SE","9","42.0 N","7.0 E","N","","","","","394031.0","4194859.0","37.895089","-106.205246","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705231", +"2705232","W0531 WELL NO PUMP 01","18940R","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","21CW0020, 99CW0044, W0531","18940-R","07-8-1537","WHITTEN, GEORGE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","NE","9","42.0 N","7.0 E","N","","","","","393867.0","4195585.0","37.901612","-106.207218","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2705232", +"2705233","W2326 WELL NO 02","PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W2326","11442-R, 11442-R-R","100747/12061406","CARLSON, STEVEN & TREVA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","3","42.0 N","7.0 E","N","","","","","394506.0","4196430.0","37.909301","-106.200075","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705233", +"2705234","W0230 WELL NO PUMP 02","#3 & 4 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W0230","11599-R","10063615/10063654","CORZINE, CLAY; CORZINE, CLAYTON E. & LISA M.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","NW","3","42.0 N","7.0 E","N","","","","","394952.0","4197157.0","37.915903","-106.195108","12/05/2007 14:26","https://dwr.state.co.us/Tools/Structures/2705234", +"2705235","W0230 WELL NO PUMP 04","#1 & 2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0230","20771-F, 20771-F-R, 89122-F","10062773/10062823","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","SE","NW","2","42.0 N","7.0 E","N","","","","","396891.0","4197414.0","37.918441","-106.173090","12/05/2007 14:27","https://dwr.state.co.us/Tools/Structures/2705235", +"2705238","W0230 WELL NO PUMP 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0230","11598-R","GP13-4774-10","SAUDER, JUSTIN B. & KARLEE A.; SAUDER, MARLIN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","15","42.0 N","7.0 E","N","","","","","394364.0","4193348.0","37.881512","-106.201238","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705238", +"2705239","81CW119 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0119","21519-F","07-8-3851","SAUDER, JUSTIN B. & KARLEE A.; SAUDER, MARLIN","RGWCD SD1","10/31/2010","10/31/2025","3","27","SAGUACHE","","","","NW","NE","14","42.0 N","7.0 E","N","","","","","397257.0","4194281.0","37.890251","-106.168480","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705239", +"2705240","81CW119 WELL NO 12","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0119","21521-F","12-5282-8","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2013","10/31/2024","3","27","SAGUACHE","","","","NE","NW","13","42.0 N","7.0 E","N","","","","","398078.0","4194248.0","37.890046","-106.159140","07/08/2014 14:44","https://dwr.state.co.us/Tools/Structures/2705240", +"2705241","81CW089 WELL NO N24","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0089","24278-F","16-07242","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2016","10/31/2025","3","27","SAGUACHE","","","","NE","SE","13","42.0 N","7.0 E","N","","","","","398846.0","4193419.0","37.882661","-106.150291","02/06/2026 16:10","https://dwr.state.co.us/Tools/Structures/2705241", +"2705243","81CW089 WELL NO N23","3-PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0089","24288-F","15-10527-8","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","13","42.0 N","7.0 E","N","","","","","398033.0","4193449.0","37.882841","-106.159539","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705243", +"2705244","81CW119 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0119","21520-F","07-8-3850","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2010","10/31/2025","3","27","SAGUACHE","","","","NW","SE","14","42.0 N","7.0 E","N","","","","","397252.0","4193487.0","37.883095","-106.168424","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705244", +"2705245","W1760 WELL NO 03","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W1760","4058-F","10061904/10062085","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","22","42.0 N","7.0 E","N","","","","","394332.0","4192337.0","37.872398","-106.201454","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705245", +"2705247","W1966 WELL NO 01","WEST WOODS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1966","11185-R","10061943/10062016","CORZINE, CATHY; PEPPER, JUSTIN L. AND RAGEN L.; SPARKS, RICHARD","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","23","42.0 N","7.0 E","N","","","","","395989.0","4192561.0","37.874607","-106.182650","12/05/2007 14:24","https://dwr.state.co.us/Tools/Structures/2705247", +"2705248","81CW033 WELL NO 14","EAST WOODS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0033","21530-F","","CORZINE, THOMAS O.","RGWCD SD1","10/31/2009","10/31/2018","3","27","SAGUACHE","","","","NW","NE","23","42.0 N","7.0 E","N","","","","","397199.0","4192668.0","37.875709","-106.168910","12/05/2007 14:24","https://dwr.state.co.us/Tools/Structures/2705248", +"2705249","W0421 WELL NO 01","#5 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0421","5943-R","02081349","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","24","42.0 N","7.0 E","N","","","","","397645.0","4192665.0","37.875732","-106.163839","11/20/2007 09:20","https://dwr.state.co.us/Tools/Structures/2705249", +"2705250","W0421 WELL NO 02","5-SW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0421","10399-F","09060671/11061761","SMITH, KENNY D. AND DANA K.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","24","42.0 N","7.0 E","N","","","","","397686.0","4192260.0","37.872087","-106.163315","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705250", +"2705251","81CW033 WELL NO 15","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0033","21992-F","07-8-1172","HAUGEN, SHERRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","23","42.0 N","7.0 E","N","","","","","397178.0","4191865.0","37.868471","-106.169034","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705251", +"2705252","81CW033 WELL NO 16","EVANS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, 81CW0033","21993-F","17-20-1131","HAUGEN, SHERRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","24","42.0 N","7.0 E","N","","","","","397985.0","4191836.0","37.868300","-106.159857","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705252", +"2705253","W2101 WELL NO 01","RES A WELL 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0013, W2101","14876-R","10061899/03241851","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","22","42.0 N","7.0 E","N","","","","","394310.0","4191627.0","37.865998","-106.201600","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705253", +"2705254","W1633 WELL NO 05","12 WELL BY KENNY'S HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3000, W1633","4371-F","07-12-1017","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","35","42.0 N","7.0 E","N","","","","","395854.0","4189038.0","37.842846","-106.183677","06/22/2022 16:46","https://dwr.state.co.us/Tools/Structures/2705254", +"2705256","W0893 WELL NO 02","RES B N#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W0893","1158-R","10062776/10062813","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","28","42.0 N","7.0 E","N","","","","","394278.0","4190664.0","37.857316","-106.201823","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705256", +"2705257","W0893 WELL NO 01","RES B SOUTH #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W0893","1156-R","10062786/10062820","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","28","42.0 N","7.0 E","N","","","","","394273.0","4190488.0","37.855730","-106.201854","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705257", +"2705258","W0848 WELL NO 03","LONG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0848","16881--R","07060398/12230539","MCCORMICK, JAMES R.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","28","42.0 N","7.0 E","N","","","","","394257.0","4190101.0","37.852241","-106.201979","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705258", +"2705259","W0423 WELL NO 02","WEST HURT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W0423","13568-R","09060703/09060740","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2024","3","27","SAGUACHE","","","","SE","NE","33","42.0 N","7.0 E","N","","","","","394241.0","4189433.0","37.846219","-106.202063","07/12/2004 13:30","https://dwr.state.co.us/Tools/Structures/2705259", +"2705275","W0141 WELL NO 01","W DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0141","14341-R","07-8-1477","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","33","42.0 N","8.0 E","N","","","","","402268.0","4188143.0","37.835490","-106.110671","06/22/2022 16:48","https://dwr.state.co.us/Tools/Structures/2705275", +"2705276","79CW032 WELL NO 1","EAST DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0032","22683-F","07-10-1027","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","33","42.0 N","8.0 E","N","","","","","403077.0","4188154.0","37.835676","-106.101480","11/04/2022 16:22","https://dwr.state.co.us/Tools/Structures/2705276", +"2705282","W3581 WELL NO IRR 13","FIELD 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3581","20547-F","02061543/02061587","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","36","42.0 N","8.0 E","N","","","","","408341.0","4188518.0","37.839500","-106.041713","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705282", +"2705283","W3581 WELL NO IRR 11","FIELD 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3581","20544-F","02061541/052018001063","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","36","42.0 N","8.0 E","N","","","","","408363.0","4189304.0","37.846586","-106.041563","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705283", +"2705284","W3581 WELL NO IRR 12","FIELD 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3581","20546-F","02061542","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","36","42.0 N","8.0 E","N","","","","","407546.0","4188511.0","37.839357","-106.050746","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705284", +"2705286","W1843 WELL NO HQTRS 14","#10 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1843","20548-F","06-10-1486","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","SW","36","42.0 N","8.0 E","N","","","","","407876.0","4188127.0","37.835930","-106.046947","07/23/2021 15:52","https://dwr.state.co.us/Tools/Structures/2705286", +"2705287","W0903 WELL NO HDQTRS 02","11 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11662-R","09212229","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","25","42.0 N","8.0 E","N","","","","","407235.0","4189724.0","37.850257","-106.054436","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705287", +"2705289","W0903 WELL NO HDQTRS 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11668-R, 11668-R-R","06-10-1367","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NW","SW","25","42.0 N","8.0 E","N","","","","","407253.0","4190177.0","37.854341","-106.054289","07/10/2014 16:17","https://dwr.state.co.us/Tools/Structures/2705289", +"2705290","W0903 WELL NO HDQTRS 13","MAINWELL ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0903","5364-F","07-12-1016","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","25","42.0 N","8.0 E","N","","","","","407259.0","4190528.0","37.857504","-106.054266","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705290", +"2705291","W0903 WELL NO HDQTRS 11","11 EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","11670-R","072016000282","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","25","42.0 N","8.0 E","N","","","","","407415.0","4189717.0","37.850212","-106.052389","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705291", +"2705292","83CW068 WELL NO 25-4U","FIELD 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0068","21990-F","04061981/01250093","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","25","42.0 N","8.0 E","N","","","","","408412.0","4190894.0","37.860919","-106.041208","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705292", +"2705293","83CW068 WELL NO 24-3U","FIELD 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0068","21991-F","072018810761/092017001242","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","24","42.0 N","8.0 E","N","","","","","408445.0","4191695.0","37.868141","-106.040934","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705293", +"2705297","W3794 WELL NO 18","FIELD 5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3794","21709-F, 21709-F-R","04061993/04062036","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","31","42.0 N","9.0 E","N","","","","","409197.0","4188511.0","37.839523","-106.031986","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705297", +"2705298","W0903 WELL NO HDQTRS 07","#11 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0030, W0903","11666-R, 89308-F","24-10-1004","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","31","42.0 N","9.0 E","N","","","","","408816.0","4188131.0","37.836060","-106.036267","07/23/2021 15:53","https://dwr.state.co.us/Tools/Structures/2705298", +"2705299","W3794 WELL NO 19","FIELD 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3794","21505-F","04061982/04062026","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","31","42.0 N","9.0 E","N","","","","","409213.0","4189298.0","37.846617","-106.031903","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705299", +"2705300","W3794 WELL NO 21","FIELD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3794","21710-F","04061992","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","31","42.0 N","9.0 E","N","","","","","409980.0","4188500.0","37.839501","-106.023087","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705300", +"2705301","W3794 WELL NO 20","FIELD 8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3794","21506-F","04061988","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","31","42.0 N","9.0 E","N","","","","","410001.0","4189288.0","37.846605","-106.022946","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705301", +"2705305","W0903 WELL NO HDQTRS 12","1/2 MILE E OF SIGN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0030, W0903","3911-F, 89309-F","24-10-1005","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","31","42.0 N","9.0 E","N","","","","","409585.0","4188120.0","37.836038","-106.027528","07/23/2021 15:54","https://dwr.state.co.us/Tools/Structures/2705305", +"2705306","82CW092 WELL NO 02","32 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0092","25113-F","09091925/09061997","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","35","42.0 N","9.0 E","N","","","","","416263.0","4188439.0","37.839550","-105.951683","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705306", +"2705308","W2543 WELL NO 07","CON 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2543","5396-F","062013004255/12061423","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","12","41.0 N","7.0 E","N","","","","","398161.0","4185764.0","37.813603","-106.157001","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705308", +"2705309","SLV LAND WELL 7-A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0003","28884-F, 28884-F-R","10061914/10062060","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","12","41.0 N","7.0 E","N","","","","","398533.0","4186196.0","37.817537","-106.152836","10/10/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705309", +"2705311","SLV LAND WELL 5A11","#10 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0003","28882-F","05083035/05083083","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","11","41.0 N","7.0 E","N","","","","","396951.0","4186162.0","37.817054","-106.170802","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705311", +"2705312","SLV WELL NO 5-A-12","11 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0003","28883-F","072017003066/10062068","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","12","41.0 N","7.0 E","N","","","","","397767.0","4186142.0","37.816965","-106.161530","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705312", +"2705313","90CW0008 WELL NO 01","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0009, 90CW0008","18857-F","09062687/10060175","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","16","41.0 N","8.0 E","N","","","","","403358.0","4184497.0","37.802751","-106.097799","12/28/2022 11:18","https://dwr.state.co.us/Tools/Structures/2705313", +"2705314","W0742 WELL NO 02","H-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0742","12032-R","072019003978/12062744","KRUSE, MICHAEL; KRUSE, MICHAEL & BARBARA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","18","41.0 N","7.0 E","N","","","","","390055.0","4184495.0","37.801228","-106.248881","07/23/2021 15:55","https://dwr.state.co.us/Tools/Structures/2705314", +"2705318","W0770 WELL NO 01","F1/F2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0770","5955-R","12062579/100691","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","17","41.0 N","7.0 E","N","","","","","392097.0","4184655.0","37.802913","-106.225714","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705318", +"2705319","W0289 WELL NO 04","FUCHS HALF - SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0289","5830-F","052013003280/12062724","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","21","41.0 N","7.0 E","N","","","","","392494.0","4181778.0","37.777035","-106.220779","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705319", +"2705321","W0754 WELL NO 02","WELL TO BUDDHA RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0754","12057-R","14-18567-10","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","21","41.0 N","7.0 E","N","","","","","393233.0","4182450.0","37.783177","-106.212488","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705321", +"2705323","W0950 WELL NO 02","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0950","13010-R","21-06239-10","M&S SHAW PROPERTIES LLC (TEMPLE, SHANE & ELIZABETH); TEMPLE, D. SHANE & ELIZABETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","7","41.0 N","7.0 E","N","","","","","390112.0","4185921.0","37.814084","-106.248450","08/06/2020 17:39","https://dwr.state.co.us/Tools/Structures/2705323", +"2705324","W0950 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0950","13009-R","10060706/10061054","M&S SHAW PROPERTIES LLC (TEMPLE, SHANE & ELIZABETH); TEMPLE, D. SHANE & ELIZABETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","5","41.0 N","7.0 E","N","","","","","390989.0","4187085.0","37.824678","-106.238664","08/06/2020 17:39","https://dwr.state.co.us/Tools/Structures/2705324", +"2705326","W3180 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W3180","4413-F, 4413-F-R","032014000121","M&S SHAW PROPERTIES LLC (TEMPLE, SHANE & ELIZABETH); TEMPLE, D. SHANE & ELIZABETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","6","41.0 N","7.0 E","N","","","","","389792.0","4187475.0","37.828049","-106.252321","06/20/2025 11:44","https://dwr.state.co.us/Tools/Structures/2705326", +"2705327","W0959 WELL NO 04","A1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0959","2311-F","14-09900-8","CACTUS-FINGER FARMS LLC (CFF, LLC); KRUSE, MIRKO & LAURELIN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SE","NW","4","41.0 N","7.0 E","N","","","","","393005.0","4187801.0","37.831369","-106.215867","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705327", +"2705328","W0860 WELL NO 02","B1-CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0860","11715-R","07-10-1089","TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","5","41.0 N","7.0 E","N","","","","","391781.0","4187405.0","37.827656","-106.229714","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705328", +"2705329","W0743 WELL NO 01","#8 WELL NW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0743","12030-R","24-07595-10","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","8","41.0 N","7.0 E","N","","","","","392160.0","4186562.0","37.820105","-106.225283","12/31/2008 15:12","https://dwr.state.co.us/Tools/Structures/2705329", +"2705330","W0860 WELL NO 01","SCHOOL HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0860","11714-R, 11714-R-R","07-8-1248","TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","8","41.0 N","7.0 E","N","","","","","391708.0","4185365.0","37.809265","-106.230238","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705330", +"2705332","W3670 WELL NO 01R","NORTH SUBSTATION","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3670","11355-R-R, 11355-R-R","02061550/02061569","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","21","41.0 N","7.0 E","N","","","","","393651.0","4182150.0","37.780522","-106.207698","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705332", +"2705334","W2359 WELL NO 02","WILSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0004, W2359","15377-F","12204461/12204366","PEPPER, KELBY; PEPPER, KELBY & JACQUE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","22","41.0 N","7.0 E","N","","","","","395226.0","4182149.0","37.780695","-106.189816","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705334", +"2705336","W3481 WELL NO 01","C-W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3481","18859-F, 18859-F-R","GP13-2744-8","WEIS, CJ","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","23","41.0 N","7.0 E","N","","","","","396028.0","4182119.0","37.780516","-106.180706","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705336", +"2705337","W1828 WELL NO 02","PIERCE - SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1828","16057-F","20-10214-08","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","22","41.0 N","7.0 E","N","","","","","394276.0","4182567.0","37.784352","-106.200663","09/24/2013 08:52","https://dwr.state.co.us/Tools/Structures/2705337", +"2705340","W682 WELL NO 3","GH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0682","13763-F","0921334/0520130074313","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","15","41.0 N","7.0 E","N","","","","","394922.0","4183363.0","37.791600","-106.193444","12/21/2023 14:39","https://dwr.state.co.us/Tools/Structures/2705340", +"2705342","W0682 WELL NO 02","3/4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0682","12029-R","10061937/10062044","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NE","NE","15","41.0 N","7.0 E","N","","","","","395318.0","4184626.0","37.803027","-106.189129","08/21/2008 11:41","https://dwr.state.co.us/Tools/Structures/2705342", +"2705343","W0682 WELL NO 04","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0682","1656-R, 1656-R-R","10063565/10062065","ENSZ, ROGER; ENSZ, WESTON","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","11","41.0 N","7.0 E","N","","","","","396515.0","4185065.0","37.807119","-106.175597","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705343", +"2705344","W1509 WELL NO IRR 05","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1509","7273-R-R","09062774/10060071","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","24","41.0 N","7.0 E","N","","","","","397661.0","4182149.0","37.780971","-106.162170","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705344", +"2705348","W0162 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0162","1645-R","06200683/12204374","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS FAMILY FARM LLC (MYERS, ERNIE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","23","41.0 N","7.0 E","N","","","","","395732.0","4182562.0","37.784475","-106.184130","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705348", +"2705350","W0270 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0270","12538-R","09060715/09060747","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","13","41.0 N","7.0 E","N","","","","","398095.0","4183378.0","37.792095","-106.157415","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705350", +"2705351","W0848 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0848","2208-F","03063646/12212828","ENSZ, WESTON; LANDMARKS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","13","41.0 N","7.0 E","N","","","","","398127.0","4184153.0","37.799082","-106.157160","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705351", +"2705353","W2543 WELL NO 02","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2543","2266-F","100063/07201700381","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","12","41.0 N","7.0 E","N","","","","","398140.0","4184989.0","37.806617","-106.157130","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705353", +"2705354","84CW062 WELL NO 01","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","84CW0062","19879-F","100063/07201700381","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NE","SE","12","41.0 N","7.0 E","N","","","","","398739.0","4185343.0","37.809874","-106.150376","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705354", +"2705355","W2543 WELL NO 08","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2543","4417-F","10061908/10062066","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","1","41.0 N","7.0 E","N","","","","","398199.0","4186558.0","37.820762","-106.156681","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705355", +"2705356","W0419 WELL NO 01","SOUTH WELL FIELD 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","11CW0017, W0419","6744-R","06-10-1482","ADKINS, CATHERINE C.; ADKINS, CINDY T.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","NE","4","41.0 N","7.0 E","N","","","","","393412.0","4188200.0","37.835012","-106.211302","01/09/2004 16:58","https://dwr.state.co.us/Tools/Structures/2705356", +"2705357","W0201 WELL NO 02","#31 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0201","11220-R, 13437-F","10061946/10062031","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","9","41.0 N","7.0 E","N","","","","","393372.0","4186259.0","37.817517","-106.211470","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705357", +"2705359","80CW012 WELL NO 06","#36 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0034, 80CW0012","24012-F","05119251","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","10","41.0 N","7.0 E","N","","","","","395332.0","4185410.0","37.810093","-106.189084","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705359", +"2705360","W0249 WELL NO BOWERS 03","#37 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0034, W0249","856-R","10061930/10062053","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","10","41.0 N","7.0 E","N","","","","","394947.0","4185800.0","37.813563","-106.193513","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705360", +"2705361","W3714 WELL NO 02","#32 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0034, W3714","21291-F","07202166","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","10","41.0 N","7.0 E","N","","","","","394563.0","4186206.0","37.817177","-106.197934","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705361", +"2705362","W0203 WELL NO 03","#32 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0034, W0203","6253-F","11060558/11060643","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","10","41.0 N","7.0 E","N","","","","","394184.0","4186565.0","37.820369","-106.202291","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705362", +"2705364","W3714 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0017, W3714","19152-F, 90179-F","04128388/062019000986, 12204456/12204357","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","11","41.0 N","7.0 E","N","","","","","396159.0","4186198.0","37.817288","-106.179803","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705364", +"2705365","83CW078 WELL NO 02-03AU","CORNER OF 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0078","21808-F-R","072017003075/072017003079","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","2","41.0 N","7.0 E","N","","","","","396612.0","4186595.0","37.820917","-106.174714","01/16/2006 13:49","https://dwr.state.co.us/Tools/Structures/2705365", +"2705366","W2543 WELL NO 4","10 C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2543","11681-F, 11681-F-R","12062635/06200660","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","NE","11","41.0 N","7.0 E","N","","","","","396699.0","4185989.0","37.815466","-106.173639","08/05/2025 12:36","https://dwr.state.co.us/Tools/Structures/2705366", +"2705367","80CW129 WELL NO 03","WEST OF 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0129","21920-F","10061915/10062059","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","12","41.0 N","7.0 E","N","","","","","397373.0","4186160.0","37.817083","-106.166008","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705367", +"2705368","83CW078 WELL NO 02-03U","1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0015, 83CW0078","24597-F, 24597-F-R","06200676/10062080","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","2","41.0 N","7.0 E","N","","","","","397071.0","4186573.0","37.820771","-106.169497","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705368", +"2705369","83CW078 WELL NO 01-02U","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0078","24598-F","10061895/10242134","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","1","41.0 N","7.0 E","N","","","","","397788.0","4186956.0","37.824303","-106.161406","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705369", +"2705370","83CW078 WELL NO 01-03U","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","83CW0078","24596-F","10061908/10062066","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","1","41.0 N","7.0 E","N","","","","","398578.0","4186944.0","37.824283","-106.152429","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705370", +"2705371","W0249 WELL NO BOWERS 01","T6 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0249","2293-F","12062544/04061511","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","2","41.0 N","7.0 E","N","","","","","395790.0","4186741.0","37.822139","-106.184073","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705371", +"2705373","W0455 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0455","751-R","05-6-1258","TONY HOLCOMB, & GLENDA FRANSON","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","6","41.0 N","8.0 E","N","","","","","399032.0","4187397.0","37.828415","-106.147335","10/23/2014 08:45","https://dwr.state.co.us/Tools/Structures/2705373", +"2705374","W1625 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1625","9069-F","01250104/072016000285, 03241859/01250079","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2012","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","6","41.0 N","8.0 E","N","","","","","399816.0","4187326.0","37.827862","-106.138418","10/09/2013 08:42","https://dwr.state.co.us/Tools/Structures/2705374", +"2705375","W1625 WELL NO 06","CORNER METZGER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1625","9068-F","","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2009","10/31/2014","3","27","SAGUACHE","","","SW","SW","NE","6","41.0 N","8.0 E","N","","","","","399820.0","4187420.0","37.828710","-106.138386","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705375", +"2705377","W0441 WELL NO 02","T7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0441","13556-F","11061522/11061552-100804","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); PERRIN JR., J. V.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","3","41.0 N","8.0 E","N","","","","","403877.0","4187507.0","37.829930","-106.092304","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705377", +"2705378","W0755 WELL NO 03","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0755","3590-F","14-06603-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","2","41.0 N","8.0 E","N","","","","","406281.0","4187313.0","37.828432","-106.064965","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705378", +"2705379","W1357 WELL NO 09","COORS 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1357","13580-F","03241863/03241850","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","1","41.0 N","8.0 E","N","","","","","407100.0","4187496.0","37.830165","-106.055684","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705379", +"2705380","W1357 WELL NO 07","COORS 9 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1357","6179-F","12062631/12062661","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","1","41.0 N","8.0 E","N","","","","","407087.0","4187315.0","37.828532","-106.055808","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705380", +"2705382","W1630 WELL NO 02","MCDANIELS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1630","99-R, 99-R-R","20-00154-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","8","41.0 N","8.0 E","N","","","","","400569.0","4184987.0","37.806867","-106.129542","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705382", +"2705383","W0286 WELL NO 01","50-N OF SW CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0007, W0286","4298-F, 88570-F","22-04262-08","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","17","41.0 N","8.0 E","N","","","","","401341.0","4184141.0","37.799327","-106.120658","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705383", +"2705385","W2361 WELL NO 11","N. BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2361","5402-F","20-00152-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","18","41.0 N","8.0 E","N","","","","","398923.0","4183415.0","37.792520","-106.148018","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705385", +"2705386","W2361 WELL NO 10","SOUTH BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","6426-R, 6426-R-R","04125139/02060477","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","19","41.0 N","8.0 E","N","","","","","398995.0","4182569.0","37.784904","-106.147082","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705386", +"2705392","W2361 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","16182-R","GP13-4824-8","ROCKEY FARMS LLC","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","19","41.0 N","8.0 E","N","","","","","398881.0","4181851.0","37.778422","-106.148276","08/25/2014 09:33","https://dwr.state.co.us/Tools/Structures/2705392", +"2705393","W3545 WELL NO 02R","47 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3545","6841-R-R","25-05777-08","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","21","41.0 N","8.0 E","N","","","","","402454.0","4182114.0","37.781180","-106.107745","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705393", +"2705394","W0532 WELL NO 01","48 SE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1510","6844-R","07-10-1018","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","SE","20","41.0 N","8.0 E","N","","","","","401996.0","4181730.0","37.777671","-106.112894","11/05/2011 21:33","https://dwr.state.co.us/Tools/Structures/2705394", +"2705395","W1834 WELL NO 03","HARMON CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1834","13223-R","07202108/12204378","SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","21","41.0 N","8.0 E","N","","","","","402108.0","4182518.0","37.784784","-106.111728","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705395", +"2705396","W0726 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0726","5342-F","09062767/10060081","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","16","41.0 N","8.0 E","N","","","","","402137.0","4183411.0","37.792834","-106.111520","08/14/2013 15:27","https://dwr.state.co.us/Tools/Structures/2705396", +"2705398","W0263 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0263","11234-R, 11234-R-R","09062699/10060169","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2013","10/31/2025","3","27","SAGUACHE","","","","SW","SE","16","41.0 N","8.0 E","N","","","","","402963.0","4183451.0","37.793283","-106.102145","10/22/2013 12:51","https://dwr.state.co.us/Tools/Structures/2705398", +"2705399","W3906 WELL NO 05R","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3906","11233-R-R","09062699/10060169","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","16","41.0 N","8.0 E","N","","","","","403342.0","4183722.0","37.795765","-106.097877","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705399", +"2705400","W1511 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1511","2964-F","08062034/08061967","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","21","41.0 N","8.0 E","N","","","","","402883.0","4182629.0","37.785867","-106.102943","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705400", +"2705402","W3906 WELL NO 01R","FORD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3906","1697-R-R","07060396/07060944","CONSAUL JAHNKE RANCHES LLC; CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","22","41.0 N","8.0 E","N","","","","","404106.0","4182880.0","37.788258","-106.089090","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705402", +"2705406","W1493 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1493","677-R","03061812/03061840","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","22","41.0 N","8.0 E","N","","","","","403654.0","4181969.0","37.780001","-106.094101","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705406", +"2705407","W3409 WELL NO 17","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3409","19224-F","03061812/03061840","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","22","41.0 N","8.0 E","N","","","","","404062.0","4182082.0","37.781062","-106.089484","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705407", +"2705409","W0768 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0768","182-R","05060231/05060274","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","SE","22","41.0 N","8.0 E","N","","","","","404488.0","4182424.0","37.784188","-106.084692","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705409", +"2705410","W2464 WELL NO 02","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2464","4526-F","05061444/05061474","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","23","41.0 N","8.0 E","N","","","","","405301.0","4181770.0","37.778379","-106.075375","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705410", +"2705413","W0903 WELL NO SKY VLY 05","29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","6430-F","04060178/04060132","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","24","41.0 N","8.0 E","N","","","","","407785.0","4182518.0","37.785374","-106.047267","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705413", +"2705414","W0903 WELL NO SKY VLY 06","SUP 25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","6435-F","03062377/03062394","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NW","NE","24","41.0 N","8.0 E","N","","","","","407791.0","4182885.0","37.788682","-106.047246","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705414", +"2705415","W0903 WELL NO SKY VLY 01","SUP 24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","14224-R, 14224-R-R","03062349/03062402","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","13","41.0 N","8.0 E","N","","","","","406991.0","4183318.0","37.792503","-106.056386","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705415", +"2705416","W3409 WELL NO 06R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3409","6942-F-R, 6942-F-R","03061792/03061845","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","23","41.0 N","8.0 E","N","","","","","406547.0","4182880.0","37.788511","-106.061371","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705416", +"2705417","W2328 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2328","16407-R, 16407-R-R","03061792/03061845","ARTAECHEVARRIA, ASIER; SUNNY VALLEY FARMS (ARTAECHEVARRIA, ASIER)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","23","41.0 N","8.0 E","N","","","","","406140.0","4182510.0","37.785135","-106.065945","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705417", +"2705418","W1631 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1631","11914-R","05060227/052019002623","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","23","41.0 N","8.0 E","N","","","","","405316.0","4182569.0","37.785581","-106.075309","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705418", +"2705420","W1504 WELL NO 08","F2 SW CORNER SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1504","12184-R","06-10-1537","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","14","41.0 N","8.0 E","N","","","","","405345.0","4183509.0","37.794055","-106.075103","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705420", +"2705422","W1504 WELL NO 06","F3 SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1504","13362-F","12230561/01250084","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","14","41.0 N","8.0 E","N","","","","","405365.0","4184107.0","37.799446","-106.074954","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705422", +"2705425","W0263 WELL NO 12","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0263","6257-F","12212627, 24-08596-08","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2025","10/31/2025","3","27","SAGUACHE","","","","SE","NW","14","41.0 N","8.0 E","N","","","","","406184.0","4184305.0","37.801315","-106.065678","02/06/2026 16:11","https://dwr.state.co.us/Tools/Structures/2705425", +"2705426","W3906 WELL NO 10R","28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3906","5843-R-R","12212627, 24-08596-08","ANAIAK LAND, LLC (ARTAECHEVARRIA, ASIER); ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","14","41.0 N","8.0 E","N","","","","","406580.0","4184470.0","37.802843","-106.061202","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705426", +"2705427","W0903 WELL NO SKY VLY 03","SUP 20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","14225-R","03062350/03062400","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","13","41.0 N","8.0 E","N","","","","","407004.0","4184074.0","37.799317","-106.056335","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705427", +"2705428","W1843 WELL NO SKY VLY 07","FIELD 21 (1-C)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0025, W1843","25353-F, 48338-F","24-04556-06","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","NE","NE","13","41.0 N","8.0 E","N","","","","","408499.0","4184752.0","37.805578","-106.039442","07/23/2021 15:56","https://dwr.state.co.us/Tools/Structures/2705428", +"2705430","W0570 WELL NO 04","NF #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0570","5592-F","20-00153-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","6","41.0 N","8.0 E","N","","","","","399056.0","4186540.0","37.820695","-106.146943","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705430", +"2705431","W0946 WELL NO 01","NE #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0002, W0946","3693-F","12062612/12062674","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","7","41.0 N","8.0 E","N","","","","","398992.0","4185741.0","37.813488","-106.147558","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705431", +"2705432","W0570 WELL NO 01","GV-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0570","7149-R","11061530/11061645","GOOD, LAWRENCE & DOROTHY; STAGECOACH ENT LLC (TOEWS, DAVID W.); TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","7","41.0 N","8.0 E","N","","","","","399780.0","4185863.0","37.814674","-106.138624","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705432", +"2705433","W0570 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0570","7151-R","11061530/11061645","GOOD, LAWRENCE & DOROTHY; STAGECOACH ENT LLC (TOEWS, DAVID W.); TOEWS, DAVID W.","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","7","41.0 N","8.0 E","N","","","","","399778.0","4185742.0","37.813584","-106.138630","06/02/2015 11:39","https://dwr.state.co.us/Tools/Structures/2705433", +"2705436","W0239 WELL NO 01","T2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW0002, W0239","1302-R","12212657/052015000951","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","8","41.0 N","8.0 E","N","","","","","401530.0","4185724.0","37.813612","-106.118727","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705436", +"2705438","W0239 WELL NO 04","PERRIN 1 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0239","1301-R","14-17764-8","PERRIN JR, THOMAS W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","4","41.0 N","8.0 E","N","","","","","402219.0","4186540.0","37.821040","-106.111011","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705438", +"2705440","W0755 WELL NO 02","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0755","6636-F","15-01764-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","2","41.0 N","8.0 E","N","","","","","406240.0","4186500.0","37.821101","-106.065326","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705440", +"2705441","W1504 WELL NO 03","F5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1504","14209-F","052013000132","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","11","41.0 N","8.0 E","N","","","","","406229.0","4186047.0","37.817018","-106.065392","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705441", +"2705442","W0263 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0263","1382-R","05060250/05060256","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","","SE","SW","11","41.0 N","8.0 E","N","","","","","406206.0","4185019.0","37.807752","-106.065520","07/28/2015 12:39","https://dwr.state.co.us/Tools/Structures/2705442", +"2705443","W3763 WELL NO 02RR","FORD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3763","21582-F","05060249/05060271","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","11","41.0 N","8.0 E","N","","","","","405798.0","4185298.0","37.810224","-106.070191","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705443", +"2705444","W0478 WELL NO 01","FORD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0478","861-R","07060388/12204369","CONSAUL JAHNKE RANCHES LLC; CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","10","41.0 N","8.0 E","N","","","","","404589.0","4185052.0","37.807881","-106.083891","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705444", +"2705445","W0412 WELL NO 01","F4 K & D YARD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0412","6346-F","032014000092","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","12","41.0 N","8.0 E","N","","","","","407021.0","4184899.0","37.806754","-106.056248","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705445", +"2705447","80CW073 WELL NO 01","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0073","24809-F","09060709/09060796","BOWSHER FARMS LLC (MIX, GARY); MIX, GARY, TOM & TERRIE BENNETT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","12","41.0 N","8.0 E","N","","","","","407443.0","4186084.0","37.817475","-106.051606","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705447", +"2705449","W1365 WELL NO 01","W1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1365","3535-F","14-08150-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","1","41.0 N","8.0 E","N","","","","","407298.0","4186488.0","37.821101","-106.053305","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705449", +"2705451","W1028 WELL NO 06","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1028","11440-F","06-8-3857","HOWEY (GOLDMAN) , MARGARET D.; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","19","41.0 N","9.0 E","N","","","","","409394.0","4181649.0","37.777704","-106.028888","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705451", +"2705452","W1028 WELL NO 07R","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3405","13495-F","06-8-3857","HOWEY (GOLDMAN) , MARGARET D.; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","19","41.0 N","9.0 E","N","","","","","409781.0","4182024.0","37.781122","-106.024541","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705452", +"2705453","W1028 WELL NO 08R","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3405","13496-F","06-8-3856","HOWEY (GOLDMAN) , MARGARET D.; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","19","41.0 N","9.0 E","N","","","","","409811.0","4182836.0","37.788442","-106.024302","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705453", +"2705458","W1912 WELL NO 05","FIELD T-1 - CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017, W1912","8936-F-R","09062697/10060173","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","8","41.0 N","9.0 E","N","","","","","410229.0","4185672.0","37.814041","-106.019906","10/08/2008 16:10","https://dwr.state.co.us/Tools/Structures/2705458", +"2705459","W1912 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017, W1912","7718-F","09062692/10060168","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","","SW","NE","7","41.0 N","9.0 E","N","","","","","409463.0","4185693.0","37.814154","-106.028610","10/08/2008 15:52","https://dwr.state.co.us/Tools/Structures/2705459", +"2705460","W1912 WELL NO 09","W3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1912","2264-F","14-05862-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","7","41.0 N","9.0 E","N","","","","","408701.0","4185696.0","37.814106","-106.037267","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705460", +"2705462","W1366 WELL NO 03","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1366","6197-R, 53413-F, 53413-F-R, 84932-F","062013000927/12062722","KRUSE, MIRKO","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","24","41.0 N","9.0 E","N","","","","","416682.0","4182415.0","37.785301","-105.946228","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2705462", +"2705463","W3700 WELL NO 23-25R","BIGELOW 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3700","20716-F","12061277/12061310","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","23","41.0 N","9.0 E","N","","","","","415435.0","4182003.0","37.781473","-105.960340","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705463", +"2705464","W1964 WELL NO 22","BIGELOW 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1964","11642-R, 11642-R-R","12061277/12061310","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","23","41.0 N","9.0 E","N","","","","","415043.0","4181647.0","37.778229","-105.964750","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705464", +"2705465","W1417 WELL NO 01","M1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1417","11960-R","09061962/09062000","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","21","41.0 N","9.0 E","N","","","","","411826.0","4181913.0","37.780321","-106.001308","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705465", +"2705467","W3967 WELL NO 27","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23564-F","062013000925/08060435","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","5","41.0 N","9.0 E","N","","","","","410658.0","4186849.0","37.824690","-106.015178","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705467", +"2705468","W3967 WELL NO 28","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23565-F","11060586/11060604","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","6","41.0 N","9.0 E","N","","","","","409869.0","4186863.0","37.824738","-106.024144","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705468", +"2705469","W0854 WELL NO 01","SUP 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0854","11728-R","04060841/04062017","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","6","41.0 N","9.0 E","N","","","","","408675.0","4186479.0","37.821159","-106.037661","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705469", +"2705470","W3967 WELL NO 25","17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3967","23562-F","03060382/03060110","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","8","41.0 N","9.0 E","N","","","","","411421.0","4185236.0","37.810228","-106.006313","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705470", +"2705471","W3722 WELL NO C&W 05","SCF FIELD 8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3722","19784-F, 19784-F-R","02061561","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","10","41.0 N","9.0 E","N","","","","","414632.0","4186020.0","37.817599","-105.969931","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705471", +"2705472","W3722 WELL NO C&W 04","HUNT 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3722","19783-F, 19783-F-R","","RONALD R. BOWMAN REVOCABLE TRUST & GAIL J. BOWMAN","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","SW","SE","10","41.0 N","9.0 E","N","","","","","414610.0","4185234.0","37.810514","-105.970088","09/29/2004 09:53","https://dwr.state.co.us/Tools/Structures/2705472", +"2705475","W3722 WELL NO C&W 10","HUNT #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3722","21257-F, 19787-F, 21257-F-R, 21257-F-R","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","NW","NW","15","41.0 N","9.0 E","N","","","","","413811.0","4184425.0","37.803148","-105.979068","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705475", +"2705476","W3722 WELL NO C&W 12","HUNT 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3722","19789-F, 21259-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","NW","NW","16","41.0 N","9.0 E","N","","","","","412221.0","4184443.0","37.803159","-105.997129","03/27/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705476", +"2705478","W3722 WELL NO C&W 11","HUNT 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3722","21258-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2023","3","27","SAGUACHE","","","","SW","SW","16","41.0 N","9.0 E","N","","","","","412198.0","4183613.0","37.795677","-105.997290","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705478", +"2705480","W3705 WELL NO 01","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3705","21919-F","15-04675-8","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","19","41.0 N","9.0 E","N","","","","","409008.0","4182841.0","37.788408","-106.033421","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705480", +"2705481","W1028 WELL NO 04","SUP 26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1028","13164-F","04060820/04060850","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","18","41.0 N","9.0 E","N","","","","","408622.0","4183455.0","37.793902","-106.037881","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705481", +"2705482","W1912 WELL NO 16","T-3 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","11302-F","11060532/11060630","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","7","41.0 N","9.0 E","N","","","","","409458.0","4184885.0","37.806872","-106.028566","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705482", +"2705484","W3695 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3695","16970-F, 53414-F","12062565/01201346, 16-13807-8","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2021","10/31/2025","3","27","SAGUACHE","","","","SE","NW","23","41.0 N","9.0 E","N","","","","","415853.0","4182517.0","37.786144","-105.955654","05/26/2021 09:21","https://dwr.state.co.us/Tools/Structures/2705484", +"2705485","82CW156 WELL NO 10","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0156","25216-F, 53412-F","16-13811-8","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","14","41.0 N","9.0 E","N","","","","","416244.0","4183615.0","37.796075","-105.951341","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2705485", +"2705486","82CW102 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0102","24277-F","072017003072/04060844","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","13","41.0 N","9.0 E","N","","","","","417857.0","4184399.0","37.803287","-105.933111","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705486", +"2705487","82CW102 WELL NO 02","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0102","24346-F","05083036/05083084","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","1","41.0 N","9.0 E","N","","","","","417055.0","4187614.0","37.832188","-105.942588","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705487", +"2705488","82CW104 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0104","25017-F","072017001408/062017001245","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","2","41.0 N","9.0 E","N","","","","","416260.0","4187623.0","37.832196","-105.951622","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705488", +"2705489","82CW103 WELL NO 01","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0103","25150-F","072017001406/04060853","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","2","41.0 N","9.0 E","N","","","","","415470.0","4187627.0","37.832160","-105.960599","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705489", +"2705490","W0592 WELL NO 03","B WHITE SW CRNR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0592","14102-R, 14102-R-R","16-10253-8, 21-04563-08","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","23","41.0 N","9.0 E","N","","","","","415057.0","4182508.0","37.785989","-105.964691","01/16/2008 11:19","https://dwr.state.co.us/Tools/Structures/2705490", +"2705491","82CW113 WELL NO 02","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319, 82CW0113","24392-F","03063673/03063696","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","15","41.0 N","9.0 E","N","","","","","413800.0","4183613.0","37.795830","-105.979096","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705491", +"2705492","82CW113 WELL NO 06","9P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0113","24393-F","1206103/12061398","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","22","41.0 N","9.0 E","N","","","","","413809.0","4182802.0","37.788522","-105.978898","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705492", +"2705494","W1505 WELL NO 04","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0052, W1505","9345-F, 41854-F, 43409-F, 44058-F, 52175-F, 55869-F","10063536/10063702","ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","8","41.0 N","10.0 E","N","","","","","419898.0","4184857.0","37.807596","-105.909979","05/01/1998 00:00","https://dwr.state.co.us/Tools/Structures/2705494", +"2705495","81CW178 LOIS","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023, 81CW0178","23360-F","09060236/09060252","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","17","41.0 N","10.0 E","N","","","","","420272.0","4184405.0","37.803555","-105.905681","08/18/2003 16:11","https://dwr.state.co.us/Tools/Structures/2705495", +"2705496","81CW178 KATE","5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0178","23359-F","09060232/09060260","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","8","41.0 N","10.0 E","N","","","","","421074.0","4185299.0","37.811682","-105.896669","08/18/2003 16:10","https://dwr.state.co.us/Tools/Structures/2705496", +"2705497","81CW178 JUNE","13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0178","23356-F","09060229/09060253","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","8","41.0 N","10.0 E","N","","","","","421079.0","4186051.0","37.818459","-105.896695","08/18/2003 16:10","https://dwr.state.co.us/Tools/Structures/2705497", +"2705499","82CW157 WELL NO BETTY","39 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0157","23348-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2024","3","27","SAGUACHE","","","","NW","SW","5","41.0 N","10.0 E","N","","","","","420289.0","4186848.0","37.825573","-105.905757","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705499", +"2705500","82CW159 WELL NO ALICE","40 PIVOT WELL-ALICE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0159","23349-F, 23349-F-R","04128384/12061413","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","5","41.0 N","10.0 E","N","","","","","421090.0","4186841.0","37.825580","-105.896656","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705500", +"2705501","82CW157 WELL NO FRANCIS","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0157","23352-F","12212659/12212623","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","7","41.0 N","10.0 E","N","","","","","419487.0","4186046.0","37.818275","-105.914780","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705501", +"2705502","82CW158 WELL NO CATHY","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0158","23351-F","05063013/12212631","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","6","41.0 N","10.0 E","N","","","","","419476.0","4186829.0","37.825330","-105.914992","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705502", +"2705503","82CW155 WELL ELLEN","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0155","23353-F","01201387/04060842","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","7","41.0 N","10.0 E","N","","","","","418684.0","4186041.0","37.818159","-105.923902","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705503", +"2705504","82CW158 WELL NO DOROTHY","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0158","23350-F","04060837/04060848","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","6","41.0 N","10.0 E","N","","","","","418686.0","4186812.0","37.825107","-105.923966","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705504", +"2705505","W2362 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2362","1286-R, 1286-R-R","09062002/07202085","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","6","41.0 N","10.0 E","N","","","","","418300.0","4187264.0","37.829146","-105.928402","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705505", +"2705506","82CW092 WELL NO 05","35 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0092","19332-F","09062002/07202085","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","6","41.0 N","10.0 E","N","","","","","418690.0","4187627.0","37.832452","-105.924012","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705506", +"2705507","82CW092 WELL NO 06","36 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0092","19333-F","17-08595-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","6","41.0 N","10.0 E","N","","","","","419490.0","4187637.0","37.832613","-105.914923","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705507", +"2705508","82CW092 WELL NO 03","38 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0092","20554-F","09061956/09061985","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","5","41.0 N","10.0 E","N","","","","","421080.0","4187656.0","37.832924","-105.896858","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705508", +"2705509","W1964 WELL NO 20","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1964","11640-R","05-8-3473","SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","19","41.0 N","10.0 E","N","","","","","418287.0","4182416.0","37.785455","-105.928003","03/29/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705509", +"2705513","W0270 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0270","5458-F","100259/10062020","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","13","41.0 N","7.0 E","N","","","","","397291.0","4183513.0","37.793221","-106.166564","03/27/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705513", +"2705516","W3927 WELL NO 01","T3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3927","23600-F","12204465/12204361","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","5","41.0 N","8.0 E","N","","","","","401412.0","4186701.0","37.822404","-106.120200","08/06/2015 12:02","https://dwr.state.co.us/Tools/Structures/2705516", +"2705517","W3464 WELL NO 01","HARMON 21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3464","18335-F","02060453","SKYLINE LAND COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","21","41.0 N","8.0 E","N","","","","","402485.0","4182892.0","37.788194","-106.107498","03/28/1991 00:00","https://dwr.state.co.us/Tools/Structures/2705517", +"2705520","82CW198 WELL NO 03R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0013, 82CW0198","388-R-R","05060225/12212628","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","9","41.0 N","8.0 E","N","","","","","402578.0","4185324.0","37.810120","-106.106769","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705520", +"2705522","82CW090 WELL NO 01","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0090","25149-F","04060831/04060847","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","2","41.0 N","9.0 E","N","","","","","416269.0","4186821.0","37.824970","-105.951427","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705522", +"2705526","90CW032 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","23947-F","09212331/06200652","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","20","41.0 N","10.0 E","N","","","","","421070.0","4182798.0","37.789142","-105.896442","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705526", +"2705527","90CW032 WELL NO 02","FIELD #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","24681-F","09212331/06200652","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","20","41.0 N","10.0 E","N","","","","","421133.0","4182977.0","37.790761","-105.895747","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705527", +"2705528","90CW032 WELL NO 03","FIELD #11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","23946-F","07061120/07061188","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","20","41.0 N","10.0 E","N","","","","","421070.0","4182023.0","37.782158","-105.896358","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705528", +"2705529","90CW032 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","24682-F","07061120/07061188","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NE","SE","20","41.0 N","10.0 E","N","","","","","421138.0","4182201.0","37.783768","-105.895605","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705529", +"2705530","90CW032 WELL NO 05","FIELD #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","23945-F","07061122/07061167","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","20","41.0 N","10.0 E","N","","","","","420260.0","4181993.0","37.781817","-105.905552","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705530", +"2705531","90CW032 WELL NO 06","FIELD #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0032","23944-F","07061127/07061154","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","20","41.0 N","10.0 E","N","","","","","420261.0","4182801.0","37.789099","-105.905630","04/14/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705531", +"2705533","89CW033 WELL NO 01A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","89CW0033","12333-AD, 22923-F","09062754/012018003202","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","3","41.0 N","7.0 E","N","","","","","395392.0","4187833.0","37.831934","-106.188752","01/16/2006 13:53","https://dwr.state.co.us/Tools/Structures/2705533", +"2705534","91CW003 WELL NO 01","MILLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0046, 91CW0003","22147-F","09062751/10062051-100270","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","4","41.0 N","8.0 E","N","","","","","403426.0","4186919.0","37.824584","-106.097350","04/01/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705534", +"2705536","90CW029 WELL NO 01","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0029","19427-F","09060226/09060249","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","19","41.0 N","10.0 E","N","","","","","418680.0","4181996.0","37.781705","-105.923493","08/18/2003 16:14","https://dwr.state.co.us/Tools/Structures/2705536", +"2705537","91CW025 WELL NO 01","BUDDHA PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0025","17111-F","02061562/02061576","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SE","16","41.0 N","7.0 E","N","","","","","393649.0","4183399.0","37.791777","-106.207904","04/01/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705537", +"2705539","90CW023 WELL NO 03R","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0023","676-R-R","05060226/05060278","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","15","41.0 N","8.0 E","N","","","","","404151.0","4183692.0","37.795580","-106.088686","04/01/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705539", +"2705540","90CW022 WELL NO 07A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","90CW0022","36274-F, 53411-F, 53411-F-R","062013000927/12062722","KRUSE, MIRKO","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","24","41.0 N","9.0 E","N","","","","","417062.0","4182799.0","37.788796","-105.941957","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2705540", +"2705542","91CW027 BOGEL WELL 02R-A","NE #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0027","35177-F","20-00153-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","6","41.0 N","8.0 E","N","","","","","399404.0","4186926.0","37.824212","-106.143043","04/01/1992 00:00","https://dwr.state.co.us/Tools/Structures/2705542", +"2705543","91CW028 WELL NO 01R","T5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0028","37979-F","08061976/08062025","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","2","41.0 N","7.0 E","N","","","","","396201.0","4187803.0","37.831756","-106.179556","11/29/1993 00:00","https://dwr.state.co.us/Tools/Structures/2705543", +"2705545","91CW028 WELL NO 02A","T6 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","91CW0028","25284-F, 25284-F-R","12062544/04061511","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","2","41.0 N","7.0 E","N","","","","","396183.0","4187005.0","37.824563","-106.179646","11/29/1993 00:00","https://dwr.state.co.us/Tools/Structures/2705545", +"2705547","81CW069 WELL NO 03","NELSON FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","17CW3007, 81CW0069","40511-F","91-8-1252N","SLANE, JOHN W.","RGWCD SD1","10/31/1993","10/31/2025","3","27","SAGUACHE","","","","NW","SE","19","41.0 N","10.0 E","N","","","","","419469.0","4181999.0","37.781802","-105.914535","12/22/2010 16:06","https://dwr.state.co.us/Tools/Structures/2705547", +"2705558","80CW129 WELL NO 01","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0129","20869-F","100063/07201700381","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","12","41.0 N","7.0 E","N","","","","","398154.0","4185359.0","37.809953","-106.157023","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705558", +"2705559","80CW129 WELL NO 02","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0129","20870-F","062013004254/08062026","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NW","SW","12","41.0 N","7.0 E","N","","","","","397348.0","4185387.0","37.810115","-106.166182","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705559", +"2705565","82CW092 WELL NO 04","33 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0092","23497-F","12061189/052016002840","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","32","42.0 N","10.0 E","N","","","","","420274.0","4188458.0","37.840081","-105.906105","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705565", +"2705566","82CW113 WELL NO 01","14 - ROAD E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0010, 82CW0113","24391-F","22-05083-08","GREEMAN, DEE; PRICE, DUANE TRUETT & MARY LOUISE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","15","41.0 N","9.0 E","N","","","","","414613.0","4184428.0","37.803251","-105.969959","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705566", +"2705567","82CW113 WELL NO 03","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319, 82CW0113","24395-F, 24395-F-R","03063667/03063681","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","15","41.0 N","9.0 E","N","","","","","414614.0","4183649.0","37.796230","-105.969856","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705567", +"2705568","82CW113 WELL NO 04","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319, 82CW0113","24394-F, 24394-F-R","03063672/03063676","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","22","41.0 N","9.0 E","N","","","","","414671.0","4182807.0","37.788648","-105.969110","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705568", +"2705569","82CW113 WELL NO 05","13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319, 82CW0113","24401-F, 24401-F-R","03063651/03063704","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","14","41.0 N","9.0 E","N","","","","","415428.0","4183631.0","37.796144","-105.960610","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705569", +"2705570","82CW118 WELL NO 01","FIELD #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0118","20588-F","12212653/08223639","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","31","42.0 N","10.0 E","N","","","","","418684.0","4188434.0","37.839724","-105.924171","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705570", +"2705571","82CW118 WELL NO 02","1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0118","20589-F","07061133/07061179","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","31","42.0 N","10.0 E","N","","","","","419486.0","4188451.0","37.839949","-105.915059","08/18/2003 16:12","https://dwr.state.co.us/Tools/Structures/2705571", +"2705572","82CW118 WELL NO 03","FIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0118","22602-F","05062233/052018002664","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","31","42.0 N","10.0 E","N","","","","","418696.0","4189231.0","37.846908","-105.924124","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705572", +"2705573","82CW118 WELL NO 04","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0118","25014-F, 25014-F-R","09060237/09060266","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","31","42.0 N","10.0 E","N","","","","","419492.0","4189246.0","37.847114","-105.915079","08/18/2003 16:13","https://dwr.state.co.us/Tools/Structures/2705573", +"2705574","82CW155 WELL HELEN","15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","82CW0155","23355-F","06113555/07061162","ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","7","41.0 N","10.0 E","N","","","","","419472.0","4185232.0","37.810938","-105.914860","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705574", +"2705575","82CW172 WELL NO 03","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0021, 82CW0172","23354-F, 89426-F","04060817/06200657","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","SW","7","41.0 N","10.0 E","N","","","","","418675.0","4185214.0","37.810705","-105.923911","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705575", +"2705578","W0059 WELL NO 02","DAVIS FARM #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0059","3259-F","21-00640-08","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","17","41.0 N","8.0 E","N","","","","","400533.0","4183493.0","37.793400","-106.129746","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705578", +"2705579","W0080 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0046, W0080","910-R","09062751/10062051-100270","WELCH, LEE A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","4","41.0 N","8.0 E","N","","","","","403021.0","4186547.0","37.821188","-106.101901","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705579", +"2705584","W0201 WELL NO 03","#31 CORNER WELL, STRUCTURE HAS BEEN ABANDONED","Historical structure only - no longer exists or has records, but has historical data (H)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0041, W0201","4461-F","","PERRY, THOMAS ROGER & MARILYN W.; STAGECOACH ENT LLC (TOEWS, DAVID W.)","RGWCD SD1","10/31/2009","10/31/2014","3","27","SAGUACHE","","","","NW","NE","9","41.0 N","7.0 E","N","","","","","393378.0","4186504.0","37.819725","-106.211438","09/27/2018 11:06","https://dwr.state.co.us/Tools/Structures/2705584", +"2705593","W0227 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0227","484-R","03060403","HARMON, EDWARD L. & SHARILYN R.; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","20","41.0 N","8.0 E","N","","","","","401279.0","4182527.0","37.784776","-106.121143","02/06/2026 16:11","https://dwr.state.co.us/Tools/Structures/2705593", +"2705645","W0239 WELL NO 05","PERRIN 1 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0239","2231-F","11061505/11061629-100806","MYERS FARMS LLC; PERRIN JR, THOMAS W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","4","41.0 N","8.0 E","N","","","","","402236.0","4186680.0","37.822303","-106.110837","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705645", +"2705651","W0286 WELL NO 02","50-SW CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0007, 21CW0001, W0286","13861-R, 88571-F","22-04262-08","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","17","41.0 N","8.0 E","N","","","","","401342.0","4184123.0","37.799165","-106.120644","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705651", +"2705659","W0383 WELL NO 01","N. TAYLOR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0383","2852-F","11061453/11061684","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","8","41.0 N","8.0 E","N","","","","","400594.0","4185733.0","37.813592","-106.129360","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705659", +"2705669","W0478 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0478","864-R","05060249/05060271","CONSAUL, SCOTT; GRETA'S GARDEN LLC","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","11","41.0 N","8.0 E","N","","","","","405383.0","4184933.0","37.806892","-106.074857","07/30/2015 15:39","https://dwr.state.co.us/Tools/Structures/2705669", +"2705670","W0504 WELL NO 04","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","12CW0016, W0504","6465-R","09060716/09060733","BOWSHER FARMS LLC (MIX, GARY); MIX, GARY, TOM & TERRIE BENNETT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","12","41.0 N","8.0 E","N","","","","","407037.0","4185291.0","37.810288","-106.056116","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705670", +"2705672","W0505 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0020, W0505","644-R, 83993-F","06200681/10063698","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","16","41.0 N","8.0 E","N","","","","","402154.0","4184122.0","37.799243","-106.111423","06/25/2008 12:20","https://dwr.state.co.us/Tools/Structures/2705672", +"2705681","W0592 WELL NO 01","B WHITE SW CRNR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0592","3267-F","16-10253-8, 20013408, 21-04563-08","CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","23","41.0 N","9.0 E","N","","","","","415046.0","4182428.0","37.785267","-105.964807","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705681", +"2705709","W0682 WELL NO 07","ERNEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0682","12404-F","11060582/11060594","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","15","41.0 N","7.0 E","N","","","","","394123.0","4183381.0","37.791670","-106.202519","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705709", +"2705711","W0726 WELL NO 02","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0005, W0726","13652-R, 13652-R-R","11060497/11060665","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SE","17","41.0 N","8.0 E","N","","","","","401328.0","4183512.0","37.793657","-106.120720","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705711", +"2705712","W0755 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0755","6353-R","07-10-1099","ENRIQUEZ, ALEJANDRO & CRISTAL I.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","11","41.0 N","8.0 E","N","","","","","406222.0","4185696.0","37.813854","-106.065426","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705712", +"2705714","W0770 WELL NO 02","POULTRY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","W0770","60701-, 77565-F","8406844, M5/8-12-86612","STAGECOACH ENT LLC (TOEWS, DAVID W.); TOEWS, DAVID W.","RGWCD SD1","10/31/2013","10/31/2025","3","27","SAGUACHE","","","","NE","NE","17","41.0 N","7.0 E","N","","","","","392327.0","4184971.0","37.805788","-106.223149","09/01/2015 13:23","https://dwr.state.co.us/Tools/Structures/2705714", +"2705716","W0775 WELL NO 03","FORD 7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0775","1699-R","07060396/07060944","CONSAUL JAHNKE RANCHES LLC; CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","22","41.0 N","8.0 E","N","","","","","403696.0","4182589.0","37.785592","-106.093707","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705716", +"2705717","W0791 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0791","5340-F","10063620/10063657","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","19","41.0 N","8.0 E","N","","","","","399658.0","4181857.0","37.778561","-106.139456","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705717", +"2705719","W0791 WELL NO 05","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0020, W0791","1391-R, 84665-F","10063621/10063655, 9079108","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","20","41.0 N","8.0 E","N","","","","","400489.0","4181838.0","37.778481","-106.130018","06/25/2008 15:34","https://dwr.state.co.us/Tools/Structures/2705719", +"2705733","W0854 WELL NO 05","#8 ART","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0854","3067-F, 88136-F","16453430, 25-08634-06","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","6","41.0 N","9.0 E","N","","","","","409705.0","4186471.0","37.821189","-106.025958","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705733", +"2705734","W0854 WELL NO 06","SUP 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0854","3277-F","07060378/07060950, 10061958/01201342","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","6","41.0 N","9.0 E","N","","","","","409789.0","4187294.0","37.828614","-106.025107","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705734", +"2705741","W0884 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0884","16406-R","05062242/10242136","FORD FARMS, INC.; PALMGREN, KENT","RGWCD SD1","10/31/2017","10/31/2025","3","27","SAGUACHE","","","","SW","SW","24","41.0 N","8.0 E","N","","","","","406948.0","4181782.0","37.778657","-106.056677","08/01/2017 11:36","https://dwr.state.co.us/Tools/Structures/2705741", +"2705742","W0903 WELL NO HDQTRS 05","#9 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0903","11664-R","06-10-1489","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","36","42.0 N","8.0 E","N","","","","","407170.0","4188177.0","37.836309","-106.054976","07/23/2021 15:57","https://dwr.state.co.us/Tools/Structures/2705742", +"2705743","W0903 WELL NO SKY VLY 02","FLOOD WELL 28 W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","14223-R, 88433-F, 88784-F","04060814/04060843","MYERS, ERNEST M. & VIRGINIA K.; MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","24","41.0 N","8.0 E","N","","","","","406974.0","4182459.0","37.784760","-106.056469","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705743", +"2705744","W0903 WELL NO SKY VLY 04","28 W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0903","6431-F","04060819/04060854","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","24","41.0 N","8.0 E","N","","","","","406969.0","4182736.0","37.787256","-106.056561","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705744", +"2705745","W0904 WELL NO 01","FIELD #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0904","930-R, 930-R-R","05062236/05062225","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","17","41.0 N","10.0 E","N","","","","","420683.0","4183709.0","37.797319","-105.900937","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705745", +"2705747","W0918 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0021, W0918","7331-R","10063613/10063656","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","20","41.0 N","8.0 E","N","","","","","400516.0","4182542.0","37.784828","-106.129808","06/25/2008 12:46","https://dwr.state.co.us/Tools/Structures/2705747", +"2705754","W1028 WELL NO 03","SUP 23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0006, W1028","13181-F, 88873-F","04060822, 07060394/07060925","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SE","18","41.0 N","9.0 E","N","","","","","409429.0","4183456.0","37.793992","-106.028717","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705754", +"2705755","W1129 WELL NO 01","SUP 17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1129","15066-F","03060382/03060110","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","8","41.0 N","9.0 E","N","","","","","411013.0","4184868.0","37.806872","-106.010902","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705755", +"2705756","W1317 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1317","22605-F-R","09060719/09060736","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2018","10/31/2025","3","27","SAGUACHE","","","","SW","NW","4","41.0 N","8.0 E","N","","","","","402278.0","4187344.0","37.828291","-106.110449","02/06/2026 16:11","https://dwr.state.co.us/Tools/Structures/2705756", +"2705761","W1357 WELL NO 10","COORS #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1357","6407-F","10060639/10061111","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NE","NW","15","41.0 N","8.0 E","N","","","","","404171.0","4184504.0","37.802899","-106.088566","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705761", +"2705788","W1493 WELL NO 04","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1493","5375-F","05060226/05060278","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","15","41.0 N","8.0 E","N","","","","","403736.0","4183305.0","37.792049","-106.093347","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705788", +"2705797","W1504 WELL NO 14","F1 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1504","13367-F","062014002066/062014002077","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","14","41.0 N","8.0 E","N","","","","","406162.0","4183477.0","37.793851","-106.065820","12/17/2012 16:10","https://dwr.state.co.us/Tools/Structures/2705797", +"2705799","W1505 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1505","9344-F","09212325/04060851","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","18","41.0 N","10.0 E","N","","","","","419072.0","4184304.0","37.802539","-105.919300","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705799", +"2705805","W1509 WELL NO IRR 06","C-E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3019, W1509","16080-F","09061943/09061977","WEIS, CJ","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","23","41.0 N","7.0 E","N","","","","","396830.0","4182125.0","37.780661","-106.171601","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705805", +"2705848","W1631 WELL NO 03","CELLAR #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1631","65784-F, 80636-F","08-6-1511, 10930210","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","23","41.0 N","8.0 E","N","","","","","405389.0","4182581.0","37.785697","-106.074482","05/14/2009 10:47","https://dwr.state.co.us/Tools/Structures/2705848", +"2705873","W1826 WELL NO 03","FIELD #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1826","","04061983/12212600","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","12","41.0 N","8.0 E","N","","","","","407828.0","4185050.0","37.808196","-106.047101","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705873", +"2705907","W1912 WELL NO 04","FIELD T-4 - CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017, W1912","7720-F","09062702/10060172","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","8","41.0 N","9.0 E","N","","","","","410215.0","4184930.0","37.807353","-106.019973","10/08/2008 15:57","https://dwr.state.co.us/Tools/Structures/2705907", +"2705908","W1941 WELL NO 01","9A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1941","11195-R","11061422/05070275, 12204458/12212630","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","22","41.0 N","9.0 E","N","","","","","413427.0","4182434.0","37.785169","-105.983192","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705908", +"2705932","W2067 WELL NO 06","POND WELL, SEE COMMENTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0011, W2067","5501-F","07-10-1126","KOEHN, MARK; TOEWS, TREVOR & TERESA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","20","41.0 N","7.0 E","N","","","","","391389.0","4182621.0","37.784500","-106.233450","08/19/2003 12:07","https://dwr.state.co.us/Tools/Structures/2705932", +"2706008","W2289 WELL NO S 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2289","12460-R","06-8-4930","JIM FORD FARMS, INC. (FORD, JAMES M.); NEUFELD, BRIAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","19","41.0 N","9.0 E","N","","","","","408586.0","4181681.0","37.777912","-106.038066","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706008", +"2706009","W2326 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2326","11441-R, 281326-","6549125","NOLT, JOSEPH; NOLT, JOSEPH & JANE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","3","42.0 N","7.0 E","N","","","","","394501.0","4197146.0","37.915752","-106.200236","06/17/2013 12:39","https://dwr.state.co.us/Tools/Structures/2706009", +"2706014","W2359 WELL NO 01","LG","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2359","10801-R, 10801-R-R, 10801-R-R","10062056/10061916","GOOD, LAWRENCE & DOROTHY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NE","NE","22","41.0 N","7.0 E","N","","","","","395267.0","4182998.0","37.788350","-106.189473","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706014", +"2706016","W2361 WELL NO 09","SOUTH BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2361","2966-F","04125139/02060477","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","19","41.0 N","8.0 E","N","","","","","398910.0","4182635.0","37.785490","-106.148056","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706016", +"2706017","W2361 WELL NO 22","N. BODLEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2361","15409-F","20-00152-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","18","41.0 N","8.0 E","N","","","","","399331.0","4183711.0","37.795232","-106.143426","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706017", +"2706025","W2467 WELL NO 02","#38 CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2467","5550-F","10061923/10062033","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","16","41.0 N","7.0 E","N","","","","","393315.0","4184695.0","37.803417","-106.211888","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706025", +"2706042","W2588 WELL NO 06","HAZARD #3 SW RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","W2588","5205-F","09061948/652018002651","CONSAUL, SCOTT; LEE A. CONSAUL CO (PRESIDENT, CRAIG CONSAUL)","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","","SW","NE","19","41.0 N","8.0 E","N","","","","","399682.0","4182533.0","37.784656","-106.139277","01/15/2016 14:43","https://dwr.state.co.us/Tools/Structures/2706042", +"2706114","W3323 WELL NO 21","M2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3323","1477-R","20-01840-08","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","21","41.0 N","9.0 E","N","","","","","412579.0","4182093.0","37.782015","-105.992780","12/05/2012 14:04","https://dwr.state.co.us/Tools/Structures/2706114", +"2706116","W3470 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3470","46235-F, 11515-R-R","09061932/09062020","DAVIS, STEVEN & KAREN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","NE","14","41.0 N","7.0 E","N","","","","","396887.0","4184189.0","37.799267","-106.171248","01/16/2008 15:59","https://dwr.state.co.us/Tools/Structures/2706116", +"2706118","W3516 WELL NO 02","NF #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0002, W3516","19338-F","12062612/12062674","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","NW","7","41.0 N","8.0 E","N","","","","","398997.0","4185913.0","37.815039","-106.147526","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706118", +"2706127","W3634 WELL NO 03R","DAVIS, FKA 2706247","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3634","21323-F","03062370/03062404","DAVIS, STEVEN & KAREN; MOSBY, DAVID JASON & JENNIFER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","13","41.0 N","7.0 E","N","","","","","397733.0","4184557.0","37.802679","-106.161692","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706127", +"2706128","W3763 WELL NO 02R","FORD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3763","21583-F","07060388/12204369","CONSAUL JAHNKE RANCHES LLC; CONSAUL, SCOTT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","10","41.0 N","8.0 E","N","","","","","404990.0","4185312.0","37.810266","-106.079370","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706128", +"2706133","W3906 WELL NO 01RR","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3906","22834-F","19-02621","PALMGREN, KENT; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","22","41.0 N","8.0 E","N","","","","","404905.0","4182873.0","37.788278","-106.080016","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706133", +"2706134","W3914 WELL NO 06","NF #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3914","22596-F","12062614/12062703","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); RL & STRAHM (STRAHM, LOREN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SE","6","41.0 N","8.0 E","N","","","","","399801.0","4186720.0","37.822399","-106.138504","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706134", +"2706135","W3923 WELL NO 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0034, W3923","1994-R, 89793-F","11060502/11060696","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SE","8","41.0 N","8.0 E","N","","","","","401370.0","4185125.0","37.808197","-106.120463","10/04/2024 16:30","https://dwr.state.co.us/Tools/Structures/2706135", +"2706136","W3924 WELL NO 05","N. TAYLOR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3924","22526-F, 22526-F-R","11061453/11061684","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","8","41.0 N","8.0 E","N","","","","","400589.0","4185914.0","37.815222","-106.129442","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706136", +"2706142","W1028 WELL NO 05","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1028","11439-F","06-8-3856","HOWEY (GOLDMAN) , MARGARET D.; WAGAR, JOSH","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","19","41.0 N","9.0 E","N","","","","","409402.0","4182444.0","37.784869","-106.028897","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706142", +"2706143","W1912 WELL NO 08","ELLITHORPE STORAGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","8934-F, 47224-F","03060409/052018002675, 9012100","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","20","41.0 N","9.0 E","N","","","","","410186.0","4181728.0","37.778494","-106.019906","07/09/2013 11:16","https://dwr.state.co.us/Tools/Structures/2706143", +"2706144","W1912 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1912","7719-F","08060393","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2014","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","17","41.0 N","9.0 E","N","","","","","410217.0","4184091.0","37.799792","-106.019847","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706144", +"2706145","W1509 WELL NO IRR 04","C-W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1509","6116-F","GP13-2744-8","WEIS, CJ","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","23","41.0 N","7.0 E","N","","","","","395861.0","4181752.0","37.777190","-106.182549","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706145", +"2706146","W2543 WELL NO 01","GV-1 CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2543","11680-F","01070796/08062020","GOOD, LAWRENCE & DOROTHY; TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","7","41.0 N","8.0 E","N","","","","","398981.0","4185162.0","37.808269","-106.147603","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706146", +"2706147","W2362 WELL NO 01","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2362","1285-R, 1285-R-R","07061146/07061155","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","1","41.0 N","9.0 E","N","","","","","417534.0","4187284.0","37.829257","-105.937108","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706147", +"2706150","80CW012 WELL NO 05","#35 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","10CW0034, 80CW0012","24013-F","03-8-4097","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","10","41.0 N","7.0 E","N","","","","","394541.0","4185416.0","37.810056","-106.198069","12/20/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706150", +"2706151","94CW034 WELL NO 03A","SCF FIELD 19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0034","22881-F","08060393","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","17","41.0 N","9.0 E","N","","","","","410581.0","4184449.0","37.803054","-106.015757","03/12/1996 00:00","https://dwr.state.co.us/Tools/Structures/2706151", +"2706152","94CW034 WELL NO 08A","SCF FIELD 13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0034","22884-F","03060409/052018002675","SKYVIEW COOLING COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","20","41.0 N","9.0 E","N","","","","","410575.0","4182022.0","37.781182","-106.015526","03/12/1996 00:00","https://dwr.state.co.us/Tools/Structures/2706152", +"2706153","98CW39 WELL NO 1","AIRPORT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW0002, 98CW0039","21120-F, 41489-F","09060714/12230531","SAGUACHE COUNTY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","SE","24","41.0 N","8.0 E","N","","","","","408056.0","4182248.0","37.782968","-106.044156","06/20/2025 11:37","https://dwr.state.co.us/Tools/Structures/2706153", +"2706154","97CW016 WELL NO 3B","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0016","46310-F","16-13811-8","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","14","41.0 N","9.0 E","N","","","","","416250.0","4183430.0","37.794408","-105.951251","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2706154", +"2706155","97CW016 WELL NO 5A","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0016","36719-F","12062538/12062746","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","14","41.0 N","9.0 E","N","","","","","416237.0","4184410.0","37.803239","-105.951512","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2706155", +"2706156","97CW016 WELL NO 5B","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0016","47861-F","12062538/12062746","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","14","41.0 N","9.0 E","N","","","","","416241.0","4184209.0","37.801428","-105.951443","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2706156", +"2706157","97CW016 WELL NO 6A","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0016","43472-F","12062570/12062733","KRUSE, MIRKO","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","24","41.0 N","9.0 E","N","","","","","417858.0","4182787.0","37.788760","-105.932917","04/07/2000 00:00","https://dwr.state.co.us/Tools/Structures/2706157", +"2706159","99CW044 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","21CW0020, 99CW0044","23443-F","06-8-4661","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","10","42.0 N","7.0 E","N","","","","","394868.0","4195930.0","37.904837","-106.195884","07/17/2001 00:00","https://dwr.state.co.us/Tools/Structures/2706159", +"2706160","2000CW031 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0031","3201-F","GP03-6-1076","TUCKER, HARRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","NW","SE","24","41.0 N","9.0 E","N","","","","","417500.0","4182061.0","37.782185","-105.936899","04/01/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706160", +"2706164","99CW049 WELL NO 1S","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","49085-F","072017003072/04060844","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","13","41.0 N","9.0 E","N","","","","","418017.0","4184396.0","37.803274","-105.931293","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706164", +"2706165","99CW049 WELL NO 3S","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0021, 99CW0049","44501-F, 89427-F","04060817/06200657","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","7","41.0 N","10.0 E","N","","","","","418489.0","4185208.0","37.810634","-105.926023","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706165", +"2706166","99CW049 WELL NO 4S","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","44499-F","01201387/04060842","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","7","41.0 N","10.0 E","N","","","","","418681.0","4186201.0","37.819600","-105.923954","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706166", +"2706167","99CW049 WELL NO 5S","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","44502-F","04060837/04060848","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SW","6","41.0 N","10.0 E","N","","","","","418682.0","4186636.0","37.823521","-105.923991","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706167", +"2706168","99CW049 WELL NO 6S","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","44503-F","05063013/12212631","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SW","SE","6","41.0 N","10.0 E","N","","","","","419473.0","4186649.0","37.823708","-105.915006","07/03/2007 11:39","https://dwr.state.co.us/Tools/Structures/2706168", +"2706169","99CW049 WELL NO 7S","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","44500-F","12212659/12212623","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","NW","NE","7","41.0 N","10.0 E","N","","","","","419481.0","4186214.0","37.819788","-105.914867","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706169", +"2706170","99CW049 WELL NO 8S","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","49083-F","04060831/04060847","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","2","41.0 N","9.0 E","N","","","","","416273.0","4186632.0","37.823267","-105.951360","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706170", +"2706171","99CW049 WELL NO 9S","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","49082-F","05083036/05083084","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","1","41.0 N","9.0 E","N","","","","","417042.0","4187449.0","37.830700","-105.942717","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706171", +"2706172","99CW049 WELL NO 10S","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","45204-F","072017001408/062017001245","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","2","41.0 N","9.0 E","N","","","","","416258.0","4187441.0","37.830556","-105.951624","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706172", +"2706173","99CW049 WELL NO 11S","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0049","49084-F","072017001406/04060853","PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","2","41.0 N","9.0 E","N","","","","","415457.0","4187460.0","37.830653","-105.960727","05/21/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706173", +"2706174","99CW0050 WELL NO 3A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0050","42975-F","20017908","PEPPER, KELBY","RGWCD SD1","10/31/2021","10/31/2025","3","27","SAGUACHE","","","","NE","NE","12","41.0 N","9.0 E","N","","","","","418225.0","4186383.0","37.821200","-105.929155","01/09/2024 11:37","https://dwr.state.co.us/Tools/Structures/2706174", +"2706175","01CW004 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0004","479-R-R, 56725-F","08061979/08062015","SEVEN SUSPENDED HEART, LLC (WILLIS, LEE & CHRISTINE); TOEWS, DAVID W.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","3","41.0 N","7.0 E","N","","","","","395381.0","4187035.0","37.824742","-106.188762","01/16/2006 16:24","https://dwr.state.co.us/Tools/Structures/2706175", +"2706176","00CW014 WELL NO 1","COMPOST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0014","","","SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2007","10/31/2014","3","27","SAGUACHE","","","NE","SW","SW","11","41.0 N","9.0 E","N","","","","","415232.0","4185028.0","37.808716","-105.962999","08/06/2020 17:40","https://dwr.state.co.us/Tools/Structures/2706176", +"2706177","00CW026 WELL NO A-R","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0026","181-R-R","05060231/05060274","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","22","41.0 N","8.0 E","N","","","","","404868.0","4182085.0","37.781173","-106.080333","10/23/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706177", +"2706178","00CW026 WELL NO B-R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0026","11920-R-R","05061444/05061474","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","23","41.0 N","8.0 E","N","","","","","405706.0","4182067.0","37.781098","-106.070815","10/23/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706178", +"2706179","00CW026 WELL NO C-R","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0026","6824-F-R","05060227/052019002623","PALMGREN FAMILY PARTNERSHIP; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","23","41.0 N","8.0 E","N","","","","","405730.0","4182982.0","37.789346","-106.070662","10/23/2002 00:00","https://dwr.state.co.us/Tools/Structures/2706179", +"2706183","2000CW023 WELL NO LOIS-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","50383-F","24-008387","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2021","10/31/2025","3","27","SAGUACHE","","","","NW","NW","17","41.0 N","10.0 E","N","","","","","419915.0","4184779.0","37.806894","-105.909778","02/06/2026 16:12","https://dwr.state.co.us/Tools/Structures/2706183", +"2706184","2000CW023 WELL NO LOIS-S","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","50607-F","09060236/09060252","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","17","41.0 N","10.0 E","N","","","","","420274.0","4184594.0","37.805259","-105.905679","08/18/2003 14:06","https://dwr.state.co.us/Tools/Structures/2706184", +"2706185","2000CW023 WELL NO 2-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","51849-F","06-6-2012, 07061133/07061179","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SE","31","42.0 N","10.0 E","N","","","","","419119.0","4188130.0","37.837023","-105.919194","08/18/2003 14:22","https://dwr.state.co.us/Tools/Structures/2706185", +"2706186","2000CW023 WELL NO 4-S","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","51848-F","09060237/09060266","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","31","42.0 N","10.0 E","N","","","","","419187.0","4188921.0","37.844158","-105.918509","08/18/2003 14:22","https://dwr.state.co.us/Tools/Structures/2706186", +"2706187","2000CW023 WELL NO KATE-S","5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","48299-F","09060232/09060260","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","8","41.0 N","10.0 E","N","","","","","421073.0","4184874.0","37.807851","-105.896635","08/18/2003 14:22","https://dwr.state.co.us/Tools/Structures/2706187", +"2706188","2000CW023 WELL NO 5-S","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","51851-F","09060235/09080263","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","18","41.0 N","10.0 E","N","","","","","419647.0","4183609.0","37.796327","-105.912692","08/18/2003 14:23","https://dwr.state.co.us/Tools/Structures/2706188", +"2706189","2000CW023 WELL NO 1-S","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","51850-F","09060226/09060249","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","19","41.0 N","10.0 E","N","","","","","418677.0","4181817.0","37.780091","-105.923507","08/18/2003 14:18","https://dwr.state.co.us/Tools/Structures/2706189", +"2706190","2000CW023 WELL NOJUNE-S","13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0023","51674-F","09060229/09060253","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","8","41.0 N","10.0 E","N","","","","","421078.0","4185866.0","37.816792","-105.896686","08/18/2003 14:20","https://dwr.state.co.us/Tools/Structures/2706190", +"2706191","2001CW011 WELL NO 6-R","RIDDER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0011, 13CW0007","57502-F","52013003283/52013003790","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SASCO, LLC (SCHRECK, MIKE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","NW","20","41.0 N","7.0 E","N","","","","","391096.0","4183166.0","37.789377","-106.236859","08/19/2003 12:07","https://dwr.state.co.us/Tools/Structures/2706191", +"2706192","2001CW036 WELL NO 1-S","SHOP ON C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","01CW0036","44589-F","04062005/04062029","RAMSTETTER, RICHARD & JEAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","22","41.0 N","7.0 E","N","","","","","394460.0","4182148.0","37.780598","-106.198513","08/19/2003 16:43","https://dwr.state.co.us/Tools/Structures/2706192", +"2706193","2002CW037 WELL NO 1-A","#10 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0037","41689-F","07-10-1168","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","9","41.0 N","7.0 E","N","","","","","392542.0","4185426.0","37.809913","-106.220775","10/23/2003 11:57","https://dwr.state.co.us/Tools/Structures/2706193", +"2706194","03CW06 WELL NO 2A","EAST HURT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","03CW0006","25448-F","12062669/12062642","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2024","3","27","SAGUACHE","","","","NW","NE","34","42.0 N","7.0 E","N","","","","","395445.0","4189464.0","37.846637","-106.188386","07/12/2004 13:35","https://dwr.state.co.us/Tools/Structures/2706194", +"2706195","03CW0024 WELL NO 1A","1/2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","03CW0024","36489-F","","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","15","41.0 N","7.0 E","N","","","","","394518.0","4184193.0","37.799033","-106.198152","10/10/2005 12:55","https://dwr.state.co.us/Tools/Structures/2706195", +"2706197","02CW0048 WELL NO 1","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","21149-F","05063022/05063051","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","36","42.0 N","9.0 E","N","","","","","417903.0","4189238.0","37.846900","-105.933137","10/11/2005 11:18","https://dwr.state.co.us/Tools/Structures/2706197", +"2706198","02CW0048 WELL NO 1S","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","49024-F","05063022/05063051","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","36","42.0 N","9.0 E","N","","","","","417499.0","4189102.0","37.845638","-105.937713","10/11/2005 11:20","https://dwr.state.co.us/Tools/Structures/2706198", +"2706199","02CW0048 WELL NO 2","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","21150-F","05083037","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","NW","NW","36","42.0 N","9.0 E","N","","","","","417079.0","4189253.0","37.846961","-105.942503","10/11/2005 11:21","https://dwr.state.co.us/Tools/Structures/2706199", +"2706200","02CW0048 WELL NO 2A","#13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","49086-F","05083037","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","SW","NW","36","42.0 N","9.0 E","N","","","","","417078.0","4189074.0","37.845347","-105.942494","10/11/2005 11:22","https://dwr.state.co.us/Tools/Structures/2706200", +"2706201","02CW0048 WELL NO 3","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","21151-F","04060833/04060852","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","NW","SW","36","42.0 N","9.0 E","N","","","","","417076.0","4188452.0","37.839742","-105.942446","10/11/2005 11:56","https://dwr.state.co.us/Tools/Structures/2706201", +"2706202","02CW0048 WELL NO 3A","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","49064-F","04060833/04060852","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NE","SW","SW","36","42.0 N","9.0 E","N","","","","","417072.0","4188257.0","37.837984","-105.942469","10/11/2005 11:56","https://dwr.state.co.us/Tools/Structures/2706202", +"2706203","02CW0048 WELL NO 4","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","21152-F","072018810760/12212592","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","36","42.0 N","9.0 E","N","","","","","417874.0","4188440.0","37.839706","-105.933376","10/11/2005 11:54","https://dwr.state.co.us/Tools/Structures/2706203", +"2706204","02CW0048 WELL NO 4A","#15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0048","49065-F","072018810760/12212592","COLORADO STATE LAND BOARD; PEPPER, KELBY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","36","42.0 N","9.0 E","N","","","","","417873.0","4188255.0","37.838039","-105.933366","10/11/2005 11:55","https://dwr.state.co.us/Tools/Structures/2706204", +"2706206","02CW0006 WELL NO 1R6","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0006","65267-F","05062242/10242136","FORD FARMS, INC.; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","24","41.0 N","8.0 E","N","","","","","407351.0","4182054.0","37.781149","-106.052136","01/02/2008 14:34","https://dwr.state.co.us/Tools/Structures/2706206", +"2706207","02CW0006 WELL NO 1R6.5","#6.5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0006","65268-F","05060251/05060260","FORD FARMS, INC.; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","24","41.0 N","8.0 E","N","","","","","408156.0","4182043.0","37.781131","-106.042994","01/02/2008 14:37","https://dwr.state.co.us/Tools/Structures/2706207", +"2706208","02CW0006 WELL NO. 3R","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0006","65265-F","12212662","FORD FARMS, INC.; PALMGREN, KENT","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","15","41.0 N","8.0 E","N","","","","","404958.0","4184482.0","37.802783","-106.079625","05/06/2025 10:58","https://dwr.state.co.us/Tools/Structures/2706208", +"2706212","PERMIT 9068 RF","EAST METZGER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","9068-F-R","03241859/01250079","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","5","41.0 N","8.0 E","N","","","","","401020.0","4187693.0","37.831301","-106.124789","05/25/2007 15:08","https://dwr.state.co.us/Tools/Structures/2706212", +"2706213","PERMIT 25484-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","25484-F","12061183/12061408","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, TERRY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","5","41.0 N","8.0 E","N","","","","","401434.0","4187503.0","37.829633","-106.120060","01/25/2008 16:39","https://dwr.state.co.us/Tools/Structures/2706213", +"2706214","PERMIT 44606F","WEST BUFFALO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","12CW0033","44606-F, 88877-F","GP-13-2377-8","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SASCO, LLC (SCHRECK, MIKE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SW","20","41.0 N","7.0 E","N","","","","","391277.0","4182168.0","37.780405","-106.234654","01/28/2008 12:00","https://dwr.state.co.us/Tools/Structures/2706214", +"2706216","PERMIT 10802-RR","ERNEST #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","10802-R-R","11060592/11060590-100645","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","15","41.0 N","7.0 E","N","","","","","394518.0","4183770.0","37.795221","-106.198090","02/06/2008 12:02","https://dwr.state.co.us/Tools/Structures/2706216", +"2706217","2005CW020 WELL NO 2R","FIELD 6 APD TO PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0020","3192-F-R","06200681/10063698","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","16","41.0 N","8.0 E","N","","","","","402556.0","4184500.0","37.802692","-106.106908","06/25/2008 12:08","https://dwr.state.co.us/Tools/Structures/2706217", +"2706218","PERMIT 35314-FR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","35314-F-R","06200683/12204374","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS FAMILY FARM LLC (MYERS, ERNIE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","23","41.0 N","7.0 E","N","","","","","396032.0","4182950.0","37.788005","-106.180780","03/12/2008 14:44","https://dwr.state.co.us/Tools/Structures/2706218", +"2706222","07CW17 WELL NO 3-A","W1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0017","32517-F","14-08150-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","1","41.0 N","8.0 E","N","","","","","407464.0","4186876.0","37.824615","-106.051469","06/18/2010 12:39","https://dwr.state.co.us/Tools/Structures/2706222", +"2706223","PERMIT 47611-F","BACHE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","","47611-F","05063005/05063042","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","32","42.0 N","10.0 E","N","","","","","419934.0","4189045.0","37.845341","-105.910034","02/17/2009 15:11","https://dwr.state.co.us/Tools/Structures/2706223", +"2706224","PERMIT 485-R-R","HARMON 22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","485-R-R","03060403","HARMON, EDWARD L. & SHARILYN R.; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","20","41.0 N","8.0 E","N","","","","","401681.0","4182901.0","37.788189","-106.116629","03/18/2019 08:42","https://dwr.state.co.us/Tools/Structures/2706224", +"2706225","PERMIT 46407-F-R","N.WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","46407-F-R","04128384/12061413","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","5","41.0 N","10.0 E","N","","","","","421089.0","4186968.0","37.826724","-105.896681","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706225", +"2706226","PERMIT 49536-F-","SW.WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49536-F","","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2024","3","27","SAGUACHE","","","","SW","SW","5","41.0 N","10.0 E","N","","","","","420173.0","4186694.0","37.824175","-105.907058","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706226", +"2706227","PERMIT 53227-F-","SW.WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","53227-F","09061956/09061985","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","5","41.0 N","10.0 E","N","","","","","420930.0","4187276.0","37.829486","-105.898521","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706227", +"2706228","PERMIT 58685-F-","NW.WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","58685-F","09061960/09062007","BURRIS, JAKE; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","5","41.0 N","10.0 E","N","","","","","419965.0","4187975.0","37.835701","-105.909563","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706228", +"2706229","PERMIT 48679-F-","36 SE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","48679-F","17-08595-8","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","6","41.0 N","10.0 E","N","","","","","419827.0","4187341.0","37.829976","-105.911061","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706229", +"2706232","PERMIT 14571-R-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","14571-R","07061127/07061154","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","19","41.0 N","10.0 E","N","","","","","419876.0","4182510.0","37.786443","-105.909970","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706232", +"2706233","PERMIT 38078-F-","SMITH FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","38078-F","05-8-3473","SLANE, TUCK","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","19","41.0 N","10.0 E","N","","","","","418666.0","4182795.0","37.788904","-105.923742","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706233", +"2706234","PERMIT 46081-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","46081-F","07061122/07061167","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","20","41.0 N","10.0 E","N","","","","","420269.0","4182188.0","37.783575","-105.905472","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706234", +"2706235","2005CW008 WELL NO 1A","FIELD 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CARNERO CREEK","00189546","","05CW0008","36387-F","10061938/12212598","LAVERN & ELIZABETH YODER FAMILY LIVING TRUST (YODER, LAVERN)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","10","42.0 N","7.0 E","N","","","","","394837.0","4195134.0","37.897661","-106.196121","10/23/2018 09:33","https://dwr.state.co.us/Tools/Structures/2706235", +"2706236","2006CW005 WELL NO 3R","FIELD 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0005","11600-R-R","09062757/10060122","NOLT, JOSEPH; NOLT, JOSEPH & ALMA J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","15","42.0 N","7.0 E","N","","","","","395637.0","4194311.0","37.890337","-106.186905","06/26/2008 15:59","https://dwr.state.co.us/Tools/Structures/2706236", +"2706237","PERMIT 42659-F-","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","42659-F, 42659-F-R","10062774/10062817","CORZINE, CLAY","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","22","42.0 N","7.0 E","N","","","","","395524.0","4192738.0","37.876149","-106.187962","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706237", +"2706239","PERMIT 49771-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49771-F","09091925/09061997","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","35","42.0 N","9.0 E","N","","","","","416264.0","4188254.0","37.837883","-105.951650","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706239", +"2706240","PERMIT 45382-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","45382-F","12212653/08223639","ECHEVERRIA, JAMES","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","31","42.0 N","10.0 E","N","","","","","418680.0","4188255.0","37.838111","-105.924196","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706240", +"2706241","PERMIT 49772-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","49772-F","12061189/052016002840","BURRIS, JAKE; IRON CREEK LLC (ELLITHORPE, JED)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","32","42.0 N","10.0 E","N","","","","","420281.0","4188257.0","37.838270","-105.906003","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706241", +"2706243","PERMIT 24009-F","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24009-F","22-08563-08","M&S SHAW PROPERTIES LLC (TEMPLE, SHANE & ELIZABETH); TEMPLE, D. SHANE & ELIZABETH A.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","6","41.0 N","7.0 E","N","","","","","390497.0","4187127.0","37.824998","-106.244259","08/06/2020 17:42","https://dwr.state.co.us/Tools/Structures/2706243", +"2706244","PERMIT 47543-F-R","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","47543-F, 47543-F-R","10063565/10062065","ENSZ, ROGER; ENSZ, WESTON; STONE RIDGE FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","11","41.0 N","7.0 E","N","","","","","396929.0","4185387.0","37.810068","-106.170941","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706244", +"2706246","PERMIT 22072-F","#39 PIVOT WELL, DUNN RANCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22072-F","","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2019","3","27","SAGUACHE","","","","NW","SW","11","41.0 N","7.0 E","N","","","","","396135.0","4185415.0","37.810230","-106.179964","11/17/2014 15:47","https://dwr.state.co.us/Tools/Structures/2706246", +"2706248","PERMIT 35313-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","35313-F","09060715/09060747","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","13","41.0 N","7.0 E","N","","","","","398459.0","4183733.0","37.795334","-106.153331","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706248", +"2706249","PERMIT 35315-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","35315-F","100261/10062021","EAGLES, BURTON J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","13","41.0 N","7.0 E","N","","","","","397692.0","4183759.0","37.795483","-106.162045","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706249", +"2706250","PERMIT 22520-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22520-F","03063646/12212828","ENSZ, WESTON; LANDMARKS, LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","13","41.0 N","7.0 E","N","","","","","398516.0","4184529.0","37.802514","-106.152795","04/19/2013 08:41","https://dwr.state.co.us/Tools/Structures/2706250", +"2706251","PERMIT 18758-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","18758-F","0921334/0520130074313","PEPPER, TREVAN","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","15","41.0 N","7.0 E","N","","","","","395314.0","4183756.0","37.795186","-106.189049","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706251", +"2706254","PERMIT 43745-F","H-1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","227-WCB, 43745-F","072019003982/072019003992","KRUSE, MICHAEL; MIKE & JIM KRUSE PARTNERSHIP","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","18","41.0 N","7.0 E","N","","","","","389257.0","4184516.0","37.801320","-106.257947","07/23/2021 15:59","https://dwr.state.co.us/Tools/Structures/2706254", +"2706255","PERMIT 41329-F-","LOWDER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","41329-F, 67250-F","05-8-2575","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SASCO, LLC (SCHRECK, MIKE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","20","41.0 N","7.0 E","N","","","","","392062.0","4183406.0","37.791654","-106.225926","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706255", +"2706256","12CW0033 WELL NO. 1-A EAST","EAST BUFFALO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0033","44588-F, 88875-F","17-07050-8","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SASCO, LLC (SCHRECK, MIKE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","20","41.0 N","7.0 E","N","","","","","392030.0","4182200.0","37.780783","-106.226110","11/05/2025 14:22","https://dwr.state.co.us/Tools/Structures/2706256", +"2706257","PERMIT 7246-R-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","7246-R-R","09060233/09060269","SCHMIDT, BEN; SCHMIDT, LAVERNE D.; SKEFF ENTERPRISES (SKEFF, KELLEY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","27","41.0 N","7.0 E","N","","","","","395216.0","4181310.0","37.773134","-106.189808","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706257", +"2706258","PERMIT 35312-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","35312-F","100260/10062025","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS FAMILY FARM LLC (MYERS, ERNIE)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","23","41.0 N","7.0 E","N","","","","","396839.0","4182947.0","37.788070","-106.171616","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706258", +"2706259","PERMIT 41065-F","COORS 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","38382-F, 41065-F","12212647/12212610","BEIRIGER, SHAWN; JOLLY, JUDITH; MILLER COORS LLC","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","1","41.0 N","8.0 E","N","","","","","408309.0","4187510.0","37.830413","-106.041949","09/16/2022 16:52","https://dwr.state.co.us/Tools/Structures/2706259", +"2706260","07CW17 WELL NO 1-A","W2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0017","32518-F, 32518-F-R","14-13127-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","1","41.0 N","8.0 E","N","","","","","408261.0","4186897.0","37.824884","-106.042417","06/18/2010 12:26","https://dwr.state.co.us/Tools/Structures/2706260", +"2706261","07CW02 WELL NO 1R","METSKER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0002, 20CW0016","25215-F, 89631-F","20-05868-08","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","4","41.0 N","8.0 E","N","","","","","403462.0","4187711.0","37.831725","-106.097046","06/04/2013 14:05","https://dwr.state.co.us/Tools/Structures/2706261", +"2706262","PERMIT 25430-F-R","WEST METZGER PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","25430-F-R","01250104/072016000285","CLAYTON FARMS, LLC (ROD CLAYTON)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NE","6","41.0 N","8.0 E","N","","","","","400216.0","4187696.0","37.831240","-106.133925","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706262", +"2706263","22CW0034 WELL NO 2A","T5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0034","23898-F, 89791-F","11060502/11060696","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","8","41.0 N","8.0 E","N","","","","","401765.0","4185327.0","37.810060","-106.116004","11/05/2025 13:26","https://dwr.state.co.us/Tools/Structures/2706263", +"2706264","07CW28 WELL NO 1-R","MCDANIELS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0028","23380-F","20-00154-08","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); SCHRECK, MIKE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","8","41.0 N","8.0 E","N","","","","","400974.0","4185386.0","37.810506","-106.124996","06/18/2010 16:31","https://dwr.state.co.us/Tools/Structures/2706264", +"2706265","PERMIT 24729-F-","F4 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24729-F","GP10-1803-8","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","12","41.0 N","8.0 E","N","","","","","407425.0","4185272.0","37.810156","-106.051707","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706265", +"2706266","2004CW026 WELL NO. SKY VALLEY 4A","24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0026","27104-F","03062349/03062402","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","13","41.0 N","8.0 E","N","","","","","407392.0","4183664.0","37.795662","-106.051876","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706266", +"2706267","2004CW016 WELL NO. SKY VALLEY 1A","#21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0016","44999-F","03062376/03062401","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","13","41.0 N","8.0 E","N","","","","","408209.0","4184470.0","37.803008","-106.042700","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706267", +"2706268","2004CW016 WELL NO. SKY VALLEY 1B","25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0016","45000-F","03062377/03062394","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","13","41.0 N","8.0 E","N","","","","","408184.0","4183661.0","37.795715","-106.042881","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706268", +"2706269","2004CW14 WELL NO. SKY VALLEY 3A","20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0014","27103-F","03062350/03062400","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","13","41.0 N","8.0 E","N","","","","","407397.0","4184468.0","37.802908","-106.051922","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706269", +"2706270","PERMIT 23181-F-","F3 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","23181-F","12230561/01250084","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","14","41.0 N","8.0 E","N","","","","","405774.0","4184478.0","37.802832","-106.070357","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706270", +"2706271","PERMIT 23229-F-","F1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","23229-F","062014002066/062014002077","BARTEE RANCH, LLC; BARTEE, DALE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","14","41.0 N","8.0 E","N","","","","","406568.0","4183671.0","37.795641","-106.061235","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706271", +"2706272","2006CW012 WELL NO 1","KENT #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0012","17888-F","04062003/04062028","PALMGREN, KENT; PALMGREN, LINDA","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","15","41.0 N","8.0 E","N","","","","","404932.0","4183684.0","37.795589","-106.079816","07/31/2008 15:38","https://dwr.state.co.us/Tools/Structures/2706272", +"2706273","10CW0007 WELL NO 2-A","50 PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0007, 21CW0001","46561-F, 88572-F","22-04262-08","BURRIS, JAKE; ELLITHORPE, ERIC L.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","17","41.0 N","8.0 E","N","","","","","401743.0","4184510.0","37.802695","-106.116143","11/05/2025 14:25","https://dwr.state.co.us/Tools/Structures/2706273", +"2706276","2005CW020 WELL NO 5A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0020","23496-F","10063621/10063655, 9079108","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","20","41.0 N","8.0 E","N","","","","","400861.0","4182110.0","37.780972","-106.125832","06/25/2008 15:34","https://dwr.state.co.us/Tools/Structures/2706276", +"2706277","2005CW021 WELL NO 2A","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0021","45383-F","10063613/10063656","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","20","41.0 N","8.0 E","N","","","","","400908.0","4182905.0","37.788142","-106.125407","06/25/2008 15:34","https://dwr.state.co.us/Tools/Structures/2706277", +"2706279","PERMIT 20374-F-","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20374-F","05060248","HAWS, ADAM S.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","23","41.0 N","8.0 E","N","","","","","406527.0","4182063.0","37.781146","-106.061493","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706279", +"2706280","2004CW015 WELL NO. SKY VALLEY 2A","28 E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0015","41958-F","04060177/04060130","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NW","24","41.0 N","8.0 E","N","","","","","407405.0","4182896.0","37.788742","-106.051630","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706280", +"2706281","2004CW015 WELL NO. SKY VALLEY (2,4)A","SUP 28W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0015","44998-F","04060819/04060854","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","24","41.0 N","8.0 E","N","","","","","407381.0","4182850.0","37.788325","-106.051897","12/22/2023 14:53","https://dwr.state.co.us/Tools/Structures/2706281", +"2706282","2004CW015 WELL NO. SKY VALLEY 5A","SUP 29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0015","27105-F","04060178/04060132","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NE","24","41.0 N","8.0 E","N","","","","","408180.0","4182848.0","37.788388","-106.042824","06/04/2008 16:36","https://dwr.state.co.us/Tools/Structures/2706282", +"2706284","PERMIT 49700-F-","SCF FIELD 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49700-F","02061560","SKYLINE LAND COMPANY; SOUTHERN COLORADO FARMS","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","3","41.0 N","9.0 E","N","","","","","414678.0","4187021.0","37.826625","-105.969527","04/09/2013 15:58","https://dwr.state.co.us/Tools/Structures/2706284", +"2706285","94CW017 WELL NO 16A","T-3 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017","23242-F","11060532/11060630","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SE","7","41.0 N","9.0 E","N","","","","","409831.0","4185262.0","37.810307","-106.024376","10/08/2008 17:09","https://dwr.state.co.us/Tools/Structures/2706285", +"2706286","PERMIT 22885-F-","W3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","22885-F","14-05862-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NW","7","41.0 N","9.0 E","N","","","","","409053.0","4186058.0","37.817403","-106.033314","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706286", +"2706287","PERMIT 24304-F-","SUP 14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24304-F","07060376/07060942","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","8","41.0 N","9.0 E","N","","","","","411627.0","4186421.0","37.820927","-106.004117","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706287", +"2706288","94CW017 WELL NO 4A","T-4 CENTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017","22882-F","09062702/10060172","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","8","41.0 N","9.0 E","N","","","","","410606.0","4185248.0","37.810257","-106.015571","10/08/2008 17:09","https://dwr.state.co.us/Tools/Structures/2706288", +"2706289","PERMIT 37969-F-","M1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","37969-F","09061962/09062000","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","21","41.0 N","9.0 E","N","","","","","412176.0","4182017.0","37.781292","-105.997346","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706289", +"2706290","PERMIT 35499-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","35499-F","12061221/12061379","NEUFELD, BRIAN; NEUFELD, BRIAN & NICOLE","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SE","22","41.0 N","9.0 E","N","","","","","414609.0","4181823.0","37.779774","-105.969698","10/29/2007 18:04","https://dwr.state.co.us/Tools/Structures/2706290", +"2706295","07CW0046 COMPOST TECHNOLOGIES WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0046","67151-F","GP13-2738","COMPOST TECHNOLOGIES LLC. (INNESS, MARK)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","2","41.0 N","8.0 E","N","","","","","405888.0","4188043.0","37.834970","-106.069525","08/06/2020 17:43","https://dwr.state.co.us/Tools/Structures/2706295", +"2706296","94CW017 WELL NO 2A","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017","23241-F","09062692/10060168","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","NE","7","41.0 N","9.0 E","N","","","","","409826.0","4186058.0","37.817480","-106.024532","06/11/2013 14:36","https://dwr.state.co.us/Tools/Structures/2706296", +"2706297","94CW17 WELL NO 5-A","T-1 CENTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0017","22883-F, 22883-F-R","09062697/10060173","ARTAECHEVARRIA, ASIER; GUNBARREL ROAD ALAMOSA (VAN WINGERDEN, JOE); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","8","41.0 N","9.0 E","N","","","","","410608.0","4186044.0","37.817430","-106.015647","04/13/2020 09:10","https://dwr.state.co.us/Tools/Structures/2706297", +"2706298","PERMIT 2267-FR","T4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","2267-F-R","09060719/09060736","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","4","41.0 N","8.0 E","N","","","","","402654.0","4187716.0","37.831684","-106.106227","12/17/2012 16:07","https://dwr.state.co.us/Tools/Structures/2706298", +"2706322","PERMIT 26224-F","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","26224-F","10063542/10063700","MCCORMICK, JAMES R.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","5","41.0 N","8.0 E","N","","","","","401017.0","4186921.0","37.824344","-106.124718","08/10/2009 14:07","https://dwr.state.co.us/Tools/Structures/2706322", +"2706324","07CW17 WELL NO 2-R","W2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0017","11310-R-R","14-13127-8","MYERS FAMILY FARM LLC (MYERS, ERNEST & VIRGINIA); MYERS, WILLIAM J.","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","SE","1","41.0 N","8.0 E","N","","","","","408417.0","4186789.0","37.823927","-106.040631","04/23/2014 15:42","https://dwr.state.co.us/Tools/Structures/2706324", +"2706325","07CW23 WELL NO 5-R","7, FKA 2705800","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0023","9346-F-R","09060235/09080263","4A FARMS; ARTAECHEVARRIA, ASIER","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","18","41.0 N","10.0 E","N","","","","","419458.0","4183608.0","37.796301","-105.914838","11/19/2013 16:26","https://dwr.state.co.us/Tools/Structures/2706325", +"2706331","PERMIT 79094-F","BIGELOW 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","79094-F, 79094-F-R","12061275/01201349","CONSAUL, SCOTT","RGWCD SD1","10/31/2015","10/31/2025","3","27","SAGUACHE","","","","SW","SW","24","41.0 N","9.0 E","N","","","","","416851.0","4181619.0","37.778143","-105.944218","07/01/2015 12:23","https://dwr.state.co.us/Tools/Structures/2706331", +"2706332","PERMIT 38413-F","AP TO 2705515","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","38413-F","12204465/12204361","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SE","5","41.0 N","8.0 E","N","","","","","401810.0","4186925.0","37.824465","-106.115709","07/31/2015 15:19","https://dwr.state.co.us/Tools/Structures/2706332", +"2706339","17CW3007 WELL NO. 2-3-S","SUPP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","17CW3007","305349-, 81074-F","13-07404-8","SLANE, JOHN W.","RGWCD SD1","10/31/2018","10/31/2025","3","27","SAGUACHE","","","","NW","SE","19","41.0 N","10.0 E","N","","","","","419223.0","4182294.0","37.784438","-105.917361","12/01/2022 14:38","https://dwr.state.co.us/Tools/Structures/2706339", +"2706340","17CW3020 WELL NO 7A-R","D7, REPLACES 2706141","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","16317-F-R","03060407","KRUSE, MICHAEL; KRUSE, MIRKO","RGWCD SD1","10/31/2019","10/31/2025","3","27","SAGUACHE","","","","NE","SW","13","41.0 N","9.0 E","N","","","","","417066.0","4183585.0","37.795880","-105.942002","02/06/2026 16:13","https://dwr.state.co.us/Tools/Structures/2706340", +"2706341","19CW0009 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0009","84189-F","09062687/10060175","GREEMAN, DEE; PRICE FARMS LLC (PRICE, KENT)","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","NW","NE","16","41.0 N","8.0 E","N","","","","","403135.0","4184890.0","37.806268","-106.100384","05/03/2023 10:29","https://dwr.state.co.us/Tools/Structures/2706341", +"2706342","19CW0010 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","19CW0010","84195-F","22-05083-08","GREEMAN, DEE; PRICE, DUANE TRUETT & MARY LOUISE","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","NE","NW","15","41.0 N","9.0 E","N","","","","","414226.0","4184622.0","37.804954","-105.974366","08/13/2024 15:48","https://dwr.state.co.us/Tools/Structures/2706342", +"2706343","20CW0018 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0018","20573-F-R, 87897-F","15-06957-8","JEAN K. DAVIS & WAYNE C. DAVIS TRUST B; MACIAS, BARBRA","RGWCD SD1","10/31/2025","10/31/2025","3","27","SAGUACHE","","","","SW","NW","17","41.0 N","8.0 E","N","","","","","400672.0","4184501.0","37.802498","-106.128305","02/06/2026 16:13","https://dwr.state.co.us/Tools/Structures/2706343", +"2706344","21CW0021 WELL NO. 3-C","PERMIT 255075","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW0021","255075-, 89425-F","20-017909","PEPPER, KELBY","RGWCD SD1","10/31/2021","10/31/2024","3","27","SAGUACHE","","","","NE","SE","12","41.0 N","9.0 E","N","","","","","418207.0","4185563.0","37.813808","-105.929267","12/01/2022 14:13","https://dwr.state.co.us/Tools/Structures/2706344", +"2706345","21CW0001 WELL NO. 2S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA GARITA CREEK","00189521","","21CW0001","46561-F-R, 88573-F","22-04262-08","BURRIS, JAKE; ELLITHORPE, ERIC L.; PONDEROSA PARTNERSHIP LLC","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","SW","NE","17","41.0 N","8.0 E","N","","","","","401650.0","4184127.0","37.799234","-106.117147","11/05/2025 13:27","https://dwr.state.co.us/Tools/Structures/2706345", +"2706347","20CW0016 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0016","85349-F, 325421-","12212673/08223636","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","SE","NE","4","41.0 N","8.0 E","N","","","","","403649.0","4187339.0","37.828392","-106.094872","05/03/2023 10:41","https://dwr.state.co.us/Tools/Structures/2706347", +"2706348","20CW0017 WELL NO. 1-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0017","86123-F, 87773-F","04128388/062019000986, 12204456/12204357","CRESTONE VIEW FARMS, LLC (GOOD, TERRY)","RGWCD SD1","10/31/2024","10/31/2025","3","27","SAGUACHE","","","","NE","NW","11","41.0 N","7.0 E","N","","","","","396555.0","4186389.0","37.819055","-106.175332","02/06/2026 16:14","https://dwr.state.co.us/Tools/Structures/2706348", +"2706350","21CW3019 WELL NO 2-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3019","86637-F","09061943/09061977","WEIS, CJ","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","SW","SE","23","41.0 N","7.0 E","N","","","","","396698.0","4181746.0","37.777231","-106.173046","09/01/2023 18:58","https://dwr.state.co.us/Tools/Structures/2706350", +"2706351","22CW0002 WELL NO. 2S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","22CW0002","87025-F","12062612/12062674","DYNAMIC WATER SOLUTIONS (SCHRECK, DEREK); PRO-SEED INC. (SCHRECK, DEREK); STRAHM, R L & R","RGWCD SD1","10/31/2023","10/31/2025","3","27","SAGUACHE","","","","SW","NW","7","41.0 N","8.0 E","N","","","","","399008.0","4185980.0","37.815644","-106.147410","11/05/2025 13:24","https://dwr.state.co.us/Tools/Structures/2706351", +"2706352","23CW0004 WELL NO 2S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0004","88615-F","12204461/12204366","PEPPER, KELBY; PEPPER, KELBY & JACQUE","RGWCD SD1","10/31/2024","10/31/2025","3","27","SAGUACHE","","","","SE","SE","22","41.0 N","7.0 E","N","","","","","395599.0","4181918.0","37.778656","-106.185548","11/05/2025 13:22","https://dwr.state.co.us/Tools/Structures/2706352", +"2706355","23CW0019 WELL NO 3-S","23CW202319 WELL NO 3-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319","89240-F","03063667/03063681","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2024","10/31/2025","3","27","SAGUACHE","","","","NW","SE","15","41.0 N","9.0 E","N","","","","","414302.0","4183907.0","37.798526","-105.973430","09/19/2024 13:59","https://dwr.state.co.us/Tools/Structures/2706355", +"2706356","23CW0019 WELL NO 5-S","23CW202319 WELL NO 5-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW202319","89208-F","03063651/03063704","BONANZA VENTURES LLC; PALMGREN, KENT","RGWCD SD1","10/31/2025","10/31/2025","3","27","SAGUACHE","","","","SW","SW","14","41.0 N","9.0 E","N","","","","","415416.0","4183524.0","37.795179","-105.960733","02/06/2026 16:06","https://dwr.state.co.us/Tools/Structures/2706356", +"2706358","23CW13 WELL NO 5RS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0013","89034-F","17-08095-8","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA M","RGWCD SD1","10/31/2024","10/31/2025","3","27","SAGUACHE","","","","SW","SE","9","41.0 N","8.0 E","N","","","","","402992.0","4185059.0","37.807776","-106.102031","02/18/2026 14:48","https://dwr.state.co.us/Tools/Structures/2706358", +"2706359","23CW13 WELL NO 3RS","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0013","88979-F","05060225/12212628","PALMGREN, LINDA; PALMGREN, RANDALL K & LINDA M","RGWCD SD1","10/31/2024","10/31/2025","3","27","SAGUACHE","","","","SE","SW","9","41.0 N","8.0 E","N","","","","","402960.0","4185048.0","37.807674","-106.102393","02/18/2026 14:49","https://dwr.state.co.us/Tools/Structures/2706359", +"2706366","REPLACEMENT WELL 4-R W478","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","","12212662","FORD FARMS, INC.; FORD, JENNA & RYAN; PALMGREN, KENT","RGWCD SD1","10/31/2025","10/31/2025","3","27","SAGUACHE","","","","SW","NE","15","41.0 N","8.0 E","N","","","","","404561.0","4184200.0","37.800201","-106.084097","06/20/2025 10:26","https://dwr.state.co.us/Tools/Structures/2706366", +"3505052","81CW163 GRSA WELL NO 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0163","4331-F","N1K0290124","GREAT SAND DUNES NATIONAL PARK; GREAT SAND DUNES NATIONAL PARK (VALDEZ, ANDREW); UNITED STATES DEPT OF THE INTERIOR NATIONAL PARK SERVI","RGWCD SD1","10/31/2009","10/31/2025","3","35","ALAMOSA","","","","SE","NW","35","26.0 S","73.0 W","S","","","","","455328.0","4177771.0","37.746152","-105.507074","01/02/2024 10:50","https://dwr.state.co.us/Tools/Structures/3505052", +"3505053","81CW163 GRSA WELL NO 03","WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0163","36263-F","5924946","GREAT SAND DUNES NATIONAL PARK; GREAT SAND DUNES NATIONAL PARK (VALDEZ, ANDREW); UNITED STATES DEPT OF THE INTERIOR NATIONAL PARK SERVI","RGWCD SD1","10/31/2009","10/31/2025","3","35","ALAMOSA","","","","NE","SW","2","27.0 S","73.0 W","S","","","","","455123.0","4175532.0","37.725962","-105.509262","08/06/2020 17:47","https://dwr.state.co.us/Tools/Structures/3505053", +"3505620","PERMIT 036273-F","WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: MEDANO CREEK","00192564","","","36273-F","8841973","GREAT SAND DUNES NATIONAL PARK; GREAT SAND DUNES NATIONAL PARK (VALDEZ, ANDREW); UNITED STATES DEPT OF THE INTERIOR NATIONAL PARK SERVI","RGWCD SD1","10/31/2009","10/31/2025","3","35","ALAMOSA","","","","SE","SE","34","26.0 S","73.0 W","S","","","","","454381.0","4176797.0","37.737327","-105.517761","01/11/2024 16:55","https://dwr.state.co.us/Tools/Structures/3505620", diff --git a/Data/SBD_Data/StructureList_SBD2.csv b/Data/SBD_Data/StructureList_SBD2.csv new file mode 100644 index 0000000..5f9722d --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD2.csv @@ -0,0 +1,212 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2005009","W1005 WELL NO 05","FIELD #1, WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1005","20200-R, 20200-R-R","12212634","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","10","38.0 N","8.0 E","N","","","","","403405.0","4156388.0","37.549444","-106.093541","02/05/2018 13:58","https://dwr.state.co.us/Tools/Structures/2005009", +"2005060","W1554 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","10086-S","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","2","38.0 N","8.0 E","N","","","","","405007.0","4158156.0","37.565544","-106.075637","05/24/2005 09:46","https://dwr.state.co.us/Tools/Structures/2005060", +"2005063","W0169 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0169","14252-F, 76888-F","GP13-3298-8","RUE, BRIAN AND ANDREA","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","NW","NE","NW","6","39.0 N","7.0 E","N","","","","","389366.0","4168918.0","37.660778","-106.254335","02/20/2013 16:44","https://dwr.state.co.us/Tools/Structures/2005063", +"2005087","W0205 WELL NO 01","BROWN #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1837-R","03062392/03062374","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","12","38.0 N","8.0 E","N","","","","","406792.0","4156621.0","37.551893","-106.055233","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005087", +"2005099","W2469 WELL NO 06","MIDDLE SP K","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","15521-R","08093038","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","30","40.0 N","5.0 E","N","","","","","369812.0","4171208.0","37.678846","-106.476377","05/10/2021 13:48","https://dwr.state.co.us/Tools/Structures/2005099", +"2005100","W0247 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","1449-R","05-8-4726","CALDON, CASEY F.; PERRY, THOMAS R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","14","38.0 N","8.0 E","N","","","","","405851.0","4155116.0","37.538234","-106.065691","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005100", +"2005101","W0247 WELL NO 08","P #1 NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","5330-F, 15401-R-R, 55761-F","02-01564-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","23","38.0 N","8.0 E","N","","","","","405786.0","4154329.0","37.531135","-106.066326","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005101", +"2005111","W2546 WELL NO 02","SHRIVER #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2546","10086-R","14-21146-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SW","2","38.0 N","8.0 E","N","","","","","405543.0","4158341.0","37.567266","-106.069592","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005111", +"2005557","W2599 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0077, W2599","5980-R","062015000849","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","5","38.0 N","8.0 E","N","","","","","400152.0","4157807.0","37.561885","-106.130554","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005557", +"2005565","82CW124 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0124","24775-F, 24775-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","33","38.0 N","9.0 E","N","","","","","412556.0","4150605.0","37.498240","-105.989271","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005565", +"2005566","82CW124 WELL NO 01AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","82CW0124","24946-F","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NE","NE","33","38.0 N","9.0 E","N","","","","","412597.0","4150806.0","37.500056","-105.988831","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005566", +"2005607","81CW137 WELL NO 02R","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0137","25485-F, 25485-F-R","15-06621-4","CLAIR, DON; RAKHRA MUSHROOM FARM CORP","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SE","26","38.0 N","10.0 E","N","","","","","425675.0","4151388.0","37.506447","-105.840949","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005607", +"2005615","79CW021 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0021","20874-S-R","23-08714-8","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","38.0 N","9.0 E","N","","","","","411016.0","4155450.0","37.541757","-106.007277","11/19/2002 00:00","https://dwr.state.co.us/Tools/Structures/2005615", +"2005616","79CW021 WELL NO 01RR","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0021","24007-F","23-08714-8","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","38.0 N","9.0 E","N","","","","","410822.0","4155445.0","37.541694","-106.009472","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005616", +"2005618","80CW067 WELL NO 01R","POOLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0067","14877-R, 14877-R-R","07-8-1072","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","38.0 N","8.0 E","N","","","","","406973.0","4154731.0","37.534878","-106.052944","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005618", +"2005619","80CW067 WELL NO 01RR","ELEVATOR 1/4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","80CW0067","24268-F","07-8-1072","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","13","38.0 N","8.0 E","N","","","","","406966.0","4154530.0","37.533066","-106.052998","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005619", +"2005861","83CW091 WELL NO 02R","GRAVEL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","83CW0091, 85CW0061","1137-R-R","12062641/12062668","MATHIAS CONCRETE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NE","SW","20","39.0 N","8.0 E","N","","","","","400948.0","4162896.0","37.607832","-106.122231","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2005861", +"2005881","84CW026 WELL NO 02A","#2 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","84CW0026","28881-F","08050269/05083086","DEACON, MARK Q.","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","38.0 N","8.0 E","N","","","","","401757.0","4158601.0","37.569213","-106.112491","02/04/2013 14:42","https://dwr.state.co.us/Tools/Structures/2005881", +"2005882","84CW026 WELL NO 02AA","GAS #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","84CW0026","22425-F, 22425-F-R","08050269/05083086","DEACON, MARK Q.","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","4","38.0 N","8.0 E","N","","","","","401760.0","4158537.0","37.568637","-106.112448","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005882", +"2006001","W2298 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2298","","GP11-3186-12","ABSMEIER, ADRIAN","RGWCD SD2","10/31/2011","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","25","38.0 N","10.0 E","N","","","","","425984.0","4151550.0","37.507932","-105.837470","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2006001", +"2006002","W2298 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2298","","GP11-3187-12","ABSMEIER, ADRIAN","RGWCD SD2","10/31/2011","10/31/2025","3","20","ALAMOSA","","","","NW","SW","25","38.0 N","10.0 E","N","","","","","425986.0","4151574.0","37.508148","-105.837450","02/04/2013 14:45","https://dwr.state.co.us/Tools/Structures/2006002", +"2006268","79CW024 WELL NO 01A","SHRIVER #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3002, 79CW0024","24005-F","03062351/03062406","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","38.0 N","8.0 E","N","","","","","406999.0","4157137.0","37.556564","-106.052955","02/15/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006268", +"2006400","W2139 WELL NO 08","SPRINKLER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2139","19429-F-R","11060563/11060597","MATHIAS CONCRETE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","20","39.0 N","8.0 E","N","","","","","400550.0","4162800.0","37.606924","-106.126726","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006400", +"2006432","W2546 WELL NO 01","SHRIVER #3 WELLS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2546","10085-R","03061813/03061881, 1502007, 22-09271-08","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","2","38.0 N","8.0 E","N","","","","","406174.0","4158354.0","37.567448","-106.062450","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2006432", +"2006433","W3677 WELL NO 01A","SHRIVER #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3677","21716-F","03061813/03061881, 1502007","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","SE","2","38.0 N","8.0 E","N","","","","","406221.0","4157937.0","37.563695","-106.061864","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006433", +"2006443","W3692 WELL NO 02A","BROWN #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3692","20763-F, 20763-F-R","03061818/03061833","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","11","38.0 N","8.0 E","N","","","","","406248.0","4156364.0","37.549522","-106.061358","02/12/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006443", +"2006505","W0122 WELL NO 03","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0122","20245-R","072017003069/10060149","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","10","38.0 N","8.0 E","N","","","","","404179.0","4155987.0","37.545911","-106.084727","09/10/1992 00:00","https://dwr.state.co.us/Tools/Structures/2006505", +"2006508","W3896 WELL NO 05A","3 SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0022, W3896","22685-F","09212321/09212238","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","15","38.0 N","8.0 E","N","","","","","404497.0","4154761.0","37.534896","-106.080969","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006508", +"2006510","W3897 WELL NO 01AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3897","22234-F","12062582/12062683","COCHRAN, CHAD; COCHRAN, JERRY; SKY HIGH STATION, LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","1","38.0 N","8.0 E","N","","","","","406612.0","4157774.0","37.562266","-106.057417","02/09/1990 00:00","https://dwr.state.co.us/Tools/Structures/2006510", +"2006639","W0847 WELL NO 05","CHAPMAN PARK WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0847","9347-F","01081715","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD2","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SW","36","39.0 N","7.0 E","N","","","","","397407.0","4160033.0","37.581644","-106.161940","05/10/2021 13:49","https://dwr.state.co.us/Tools/Structures/2006639", +"2008010","79CW029 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0029","20874-R-R","23-08681-08","SOUTH WIND DAIRY LTD CO (SQUIRE, ALLEN G.); ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","17","38.0 N","9.0 E","N","","","","","411002.0","4154652.0","37.534564","-106.007339","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008010", +"2008019","79CW062 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","79CW0062","24947-F, 24947-F-R","8105968","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","14","38.0 N","8.0 E","N","","","","","405752.0","4154416.0","37.531916","-106.066722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008019", +"2008138","81CW024 WELL NO 02","COUNTY LINE CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","81CW0024","","06-8-2109","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","7","38.0 N","9.0 E","N","","","","","408244.0","4156508.0","37.551020","-106.038783","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008138", +"2008353","W0053 WELL NO 01","WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0053","1700-R, 1700-R-R, 1700-R-R","07-8-1568","LE PLATT, TERRY & TINA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","22","39.0 N","7.0 E","N","","","","","394109.0","4162803.0","37.606232","-106.199686","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008353", +"2008354","W0053 WELL NO 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0053","7295-R, 7295-R-R","07-8-1399","LE PLATT, TERRY & TINA","RGWCD SD2","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","22","39.0 N","7.0 E","N","","","","","393709.0","4162796.0","37.606123","-106.204215","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008354", +"2008372","W0067 WELL NO IRR 01","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","29-R-R","20-02042-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","10","38.0 N","8.0 E","N","","","","","404459.0","4157576.0","37.560260","-106.081765","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008372", +"2008373","W0067 WELL NO IRR 02","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","26-R","20-02041-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","10","38.0 N","8.0 E","N","","","","","403682.0","4157578.0","37.560198","-106.090562","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008373", +"2008374","W0067 WELL NO IRR 03","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0067","28-R, 28-R-R","01062049/01062073","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","10","38.0 N","8.0 E","N","","","","","404012.0","4157571.0","37.560169","-106.086825","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008374", +"2008395","W0089 WELL NO 01","FARIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0089","1683-R","07-10-1142","FARIS, TANOUS; SCHAEFER, MICHAEL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","35","39.0 N","7.0 E","N","","","","","395277.0","4160067.0","37.581710","-106.186064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008395", +"2008509","W0122 WELL NO 02","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0122","20245-S","072014000386/02060472, 12062550/12062716","STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","10","38.0 N","8.0 E","N","","","","","404198.0","4157011.0","37.555142","-106.084646","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008509", +"2008585","W0166 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0166","1380-R","11061487/11061573","MATTHEWS, STEVE & KATHY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","11","38.0 N","7.0 E","N","","","","","395271.0","4156926.0","37.553404","-106.185683","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008585", +"2008586","W0167 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0167","26348-","3790431","POOLE CHEMICAL","RGWCD SD2","10/31/2010","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","13","38.0 N","8.0 E","N","","","","","406686.0","4155572.0","37.542429","-106.056299","03/04/2010 10:20","https://dwr.state.co.us/Tools/Structures/2008586", +"2008647","W0205 WELL NO 03","PASTURE HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1839-R","05070549/12060186","DEACON, MARK Q.; HILLIN, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","SE","11","38.0 N","8.0 E","N","","","","","405959.0","4156551.0","37.551178","-106.064653","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008647", +"2008653","W0221 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0221","75-R, 75-R-R, 75-R-R","06214823/12204372","CORDOVA, JOSE; PARGIN, JACOB E. & AUBREY R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","28","40.0 N","6.0 E","N","","","","","382575.0","4171480.0","37.683020","-106.331723","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008653", +"2008693","W0246 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0246","2287-F","05060751/05060792","KIMBRELL, CASEY","RGWCD SD2","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","NE","NW","30","40.0 N","6.0 E","N","","","","","380053.0","4172075.0","37.688055","-106.360416","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008693", +"2008698","W0247 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0247","3790-F","06-6-1103-Perry 3 & 4 South, 06-6-1240-Perry 3 & 4 North","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","14","38.0 N","8.0 E","N","","","","","405378.0","4155150.0","37.538492","-106.071049","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008698", +"2008756","W0285 WELL NO 01","DUGAN NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0285","1809-R, 1809-R-R","07-8-1262","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","23","39.0 N","7.0 E","N","","","","","395336.0","4163313.0","37.610968","-106.185860","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008756", +"2008797","W0306 WELL NO 02","MK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0306","11142-R-R","10242106/01250051, 17-07570-6, 60610090392","FARMING TECHNOLOGY CORPORATION; NYE, KENDALL; SMOKIN SPUDS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","31","39.0 N","8.0 E","N","","","","","398590.0","4160603.0","37.586911","-106.148624","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008797", +"2008853","W0328 WELL NO 02","#5 PIVOT / DITCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0328","11381-F, 11381-F-R, 11381-F-R","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","38.0 N","8.0 E","N","","","","","400934.0","4156003.0","37.545712","-106.121457","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008853", +"2008878","W0342 WELL NO 01","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0342","6192-R","06-8-4610","SCHAEFER, MICHAEL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","3","38.0 N","7.0 E","N","","","","","394589.0","4159283.0","37.574567","-106.193742","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008878", +"2008901","W0349 WELL NO 02","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0349","1394-R","21-02584-06","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","32","40.0 N","6.0 E","N","","","","","381707.0","4169954.0","37.669158","-106.341317","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008901", +"2008930","W0370 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0370","11395-F","07-6-1170","PENA, ROSINE; SANTISTEVEN, DOLLY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","28","39.0 N","7.0 E","N","","","","","393532.0","4162116.0","37.599975","-106.206121","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008930", +"2008958","W0388 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0388","45-R","1259310/01201347","LOZOYA, CARLY; SANTI, CHERYL","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","19","39.0 N","8.0 E","N","","","","","399369.0","4163158.0","37.610022","-106.140153","06/20/2022 16:13","https://dwr.state.co.us/Tools/Structures/2008958", +"2009000","W0410 WELL NO 02","SHERMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0410","12552-R","19-02634-06","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","33","39.0 N","8.0 E","N","","","","","402147.0","4159250.0","37.575104","-106.108162","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009000", +"2009064","W0438 WELL NO 01","POWERS 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0438","11459-R, 77193-F","07-8-1266","B&B FARMS LLC; PAULSON, BRYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","35","39.0 N","7.0 E","N","","","","","396099.0","4160051.0","37.581659","-106.176754","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009064", +"2009079","W0447 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0447","7024-R","10060742/10061034-100185","BASHTON, TERRI","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","38.0 N","8.0 E","N","","","","","401759.0","4156548.0","37.550712","-106.112193","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009079", +"2009080","W0447 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0447","7033-R","07-8-1079","COOPER, MIKE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","9","38.0 N","8.0 E","N","","","","","401768.0","4156807.0","37.553047","-106.112126","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009080", +"2009109","W0456 WELL NO 02","S. TRUJILLO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0456","5542-F","06-6-1842","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","5","38.0 N","8.0 E","N","","","","","400530.0","4158854.0","37.571362","-106.126417","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009109", +"2009125","W0463 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0463","7296-R, 7296-R-R","19-03524-08","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2019","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","22","39.0 N","7.0 E","N","","","","","393739.0","4164098.0","37.617859","-106.204065","09/22/2023 10:20","https://dwr.state.co.us/Tools/Structures/2009125", +"2009156","W0475 WELL NO 01","MOCK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0475","10369-R","12061199/12061393","DEACON, MARK Q.; MOCK, ED","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","3","38.0 N","8.0 E","N","","","","","404189.0","4158690.0","37.570272","-106.084967","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009156", +"2009201","W0507 WELL NO 01","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0507","11153-F, 11153-F-R, 11153-F-R","24-08700-06","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406592.0","4154280.0","37.530776","-106.057199","12/02/2020 16:57","https://dwr.state.co.us/Tools/Structures/2009201", +"2009202","W0507 WELL NO 02","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0507","25311-F, 25311-F-R, 25311-F-R, 25311-F-R","25-07350-06","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406691.0","4154193.0","37.530001","-106.056067","12/02/2020 16:58","https://dwr.state.co.us/Tools/Structures/2009202", +"2009238","W0522 WELL NO 01","376RF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0522","11796-F","09060700/09060727","MONTE VISTA CEMETERY ASSOCIATION","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","34","39.0 N","7.0 E","N","","","","","394242.0","4160907.0","37.589162","-106.197905","01/22/2003 00:00","https://dwr.state.co.us/Tools/Structures/2009238", +"2009287","W0553 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW3023, W0553","13638-R, 430-RF, 90501-F","19-02633-06","PACHECO, JAMES A. & RHONDA K.","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","32","39.0 N","8.0 E","N","","","","","400160.0","4159191.0","37.574359","-106.130652","05/03/2021 13:29","https://dwr.state.co.us/Tools/Structures/2009287", +"2009289","W0554 WELL NO 02","SHRIVER #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0554","14439-R","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","38.0 N","8.0 E","N","","","","","407395.0","4155825.0","37.544780","-106.048307","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009289", +"2009290","13CW3002 WELL NO 04-R","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3002, W0554","4414-F","03062351/03062406","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","12","38.0 N","8.0 E","N","","","","","407001.0","4157076.0","37.556015","-106.052925","09/23/2020 09:00","https://dwr.state.co.us/Tools/Structures/2009290", +"2009291","W0554 WELL NO 05","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0554","3867-F","11061495/11061650","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","13","38.0 N","8.0 E","N","","","","","407402.0","4155907.0","37.545520","-106.048238","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009291", +"2009349","W0593 WELL NO 01","3287FR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0593","3287-F, 3287-F-R","08061977/08062004","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","27","39.0 N","7.0 E","N","","","","","394908.0","4162026.0","37.599322","-106.190524","07/06/2009 15:29","https://dwr.state.co.us/Tools/Structures/2009349", +"2009370","W0610 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0610","257-R","07-8-1071","BRODIE, MICHAEL D.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","34","39.0 N","7.0 E","N","","","","","394529.0","4159679.0","37.578128","-106.194478","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009370", +"2009407","W0636 WELL NO 01","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0636","14239-F","07-8-1438","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","18","38.0 N","9.0 E","N","","","","","408995.0","4155868.0","37.545327","-106.030203","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009407", +"2009474","W0677 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0677","588-R","07-8-1171","TORRES, MATTHEW & SAVANNAH","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","6","38.0 N","8.0 E","N","","","","","398592.0","4158062.0","37.564013","-106.148249","03/28/2024 09:24","https://dwr.state.co.us/Tools/Structures/2009474", +"2009508","W0700 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0700","6519-R-R","14-12342-6","FROEHLICH, GAYLE","RGWCD SD2","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","34","40.0 N","5.0 E","N","","","","","375229.0","4169251.0","37.661965","-106.414630","05/10/2021 13:50","https://dwr.state.co.us/Tools/Structures/2009508", +"2009562","W0738 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0738","9293-F, 9293-F-R","07-4-1243","GONZALES, MATTHEW & VICTORIA J.; PHILLIPS, ROB & JUDY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","3","38.0 N","8.0 E","N","","","","","404009.0","4159137.0","37.574281","-106.087064","12/02/2020 17:00","https://dwr.state.co.us/Tools/Structures/2009562", +"2009590","W0758 WELL NO 01","HEADLEE - NORTH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","5411-F","20-08585-08","CORZINE, CLAY; CORZINE, CLAYTON E. & LISA M.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","11","38.0 N","8.0 E","N","","","","","405007.0","4157568.0","37.560245","-106.075560","12/05/2007 15:16","https://dwr.state.co.us/Tools/Structures/2009590", +"2009592","W0758 WELL NO 03","HEADLEE - NORTH SPRINKLER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","14300-F","100930/12061362","CORZINE, CLAYTON E. & LISA M.; DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","38.0 N","8.0 E","N","","","","","405396.0","4157166.0","37.556662","-106.071105","12/05/2007 15:18","https://dwr.state.co.us/Tools/Structures/2009592", +"2009593","W0758 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","25274-F, 88423-F","8872479","OVERHOLTZER, SHERRY D. & KIMBERLY A. WRIGHT","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","11","38.0 N","8.0 E","N","","","","","404994.0","4156855.0","37.553818","-106.075615","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009593", +"2009594","W0758 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0758","4191-F","03060384/03060419","COLORADO FRESH FARMS LLC (CHRISTENSEN, HAYDEN J.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","SE","10","38.0 N","8.0 E","N","","","","","404974.0","4156753.0","37.552897","-106.075828","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009594", +"2009639","W0777 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0777","14719-R","212141985","GLENN, KYLE & JAMIE","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","25","39.0 N","7.0 E","N","","","","","397366.0","4162018.0","37.599527","-106.162683","02/06/2026 12:58","https://dwr.state.co.us/Tools/Structures/2009639", +"2009680","W0806 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","08CW0009, W0806","877-R","8215785","WAGGONER, BRIAN E. & ANGELA R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","32","39.0 N","8.0 E","N","","","","","401349.0","4159556.0","37.577776","-106.117238","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009680", +"2009737","W0839 WELL NO CARSON 02","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0839","5684-F","16-02431-4","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","19","40.0 N","5.0 E","N","","","","","370239.0","4173828.0","37.702514","-106.472003","05/10/2021 13:53","https://dwr.state.co.us/Tools/Structures/2009737", +"2009738","W0839 WELL NO CARSON 03","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0839","294-R","GP01-04-1050N","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","19","40.0 N","5.0 E","N","","","","","369872.0","4173839.0","37.702561","-106.476167","05/10/2021 13:54","https://dwr.state.co.us/Tools/Structures/2009738", +"2009792","W0869 WELL NO 02","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0009, W0869","13797-R, 89893-F","11061441/11061680","HAMILTON, JUDY J.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","14","38.0 N","8.0 E","N","","","","","404976.0","4155823.0","37.544516","-106.075685","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009792", +"2009807","W0872 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW3007, W0872","14945-, 87609-F","20013429","PHILLIPS, JAMES & SHERRY","RGWCD SD2","10/31/2023","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","32","39.0 N","8.0 E","N","","","","","401410.0","4159265.0","37.575160","-106.116509","01/09/2026 15:36","https://dwr.state.co.us/Tools/Structures/2009807", +"2010022","W1005 WELL NO 03","FIELD 2, EAST PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0012, W1005","11405-F","100084/10060129","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","9","38.0 N","8.0 E","N","","","","","402823.0","4156797.0","37.553069","-106.100182","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010022", +"2010023","W1005 WELL NO 04","FIELD 2 SOUTH POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","23CW0012, W1005","3924-F","100108/10060159","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","9","38.0 N","8.0 E","N","","","","","402552.0","4156722.0","37.552364","-106.103240","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010023", +"2010024","W1005 WELL NO 06","FIELD 1, WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1005","20200-S, 20200-S-R","09061916/09062017","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","10","38.0 N","8.0 E","N","","","","","403361.0","4156272.0","37.548394","-106.094023","02/05/2018 13:58","https://dwr.state.co.us/Tools/Structures/2010024", +"2010157","W1084 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1084","1858-R","10060722/10061044","HOLLAND, ARTHUR L.; SAN LUIS VALLEY CEMETERY ASSOCIATION","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SE","28","39.0 N","7.0 E","N","","","","","393105.0","4161557.0","37.594888","-106.210876","12/02/2020 17:01","https://dwr.state.co.us/Tools/Structures/2010157", +"2010320","W1201 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1201","79016-F","","DIERDRE LARSON & SERGE BUKHMAN","RGWCD SD2","10/31/2009","10/31/2024","3","20","RIO GRANDE","","","","SW","NW","24","39.0 N","7.0 E","N","","","","","397101.0","4163676.0","37.614439","-106.165918","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010320", +"2010325","W1203 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1203","1221-R","11061489/01201348","STILLINGS, CHARLES N.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","8","38.0 N","8.0 E","N","","","","","400215.0","4156834.0","37.553124","-106.129708","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010325", +"2010326","W1203 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1203","1223-R-R","11061528/11061634","STILLINGS, CHARLES N.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","8","38.0 N","8.0 E","N","","","","","400949.0","4156824.0","37.553113","-106.121398","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010326", +"2010437","W1267 WELL NO 04","CORSET RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1267","10209-R","22-05507-08","COLVILLE, DAVID","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","19","40.0 N","5.0 E","N","","","","","370365.0","4172967.0","37.694774","-106.470421","05/10/2021 13:56","https://dwr.state.co.us/Tools/Structures/2010437", +"2010553","W1345 WELL NO 02","HOT PLANT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","22CW0042, W1345","20548-R, 56842-F, 90380-F","12062526/12062764","RIO GRANDE COUNTY","RGWCD SD2","10/31/1983","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","20","40.0 N","6.0 E","N","","","","","381581.0","4172681.0","37.693714","-106.343188","02/06/2026 13:01","https://dwr.state.co.us/Tools/Structures/2010553", +"2010554","W1345 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1345","3361-F","06-10-1447","SOUTHWAY, HENRY & ROCK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","SW","21","40.0 N","6.0 E","N","","","","","383013.0","4172636.0","37.693493","-106.326942","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010554", +"2010555","W1351 WELL NO 01","#3 OUTSIDE NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1351","6296-R","09-8-1361","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","38.0 N","8.0 E","N","","","","","402480.0","4158471.0","37.568119","-106.104288","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010555", +"2010556","W1351 WELL NO 03","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, 13CW0006, W1351","6298-R","09062701/10060170","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","38.0 N","8.0 E","N","","","","","403390.0","4158452.0","37.568043","-106.093982","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010556", +"2010557","W1351 WELL NO 04","#1 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1351","6299-R","10061884/10062084-100197","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","4","38.0 N","8.0 E","N","","","","","401755.0","4158690.0","37.570015","-106.112525","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010557", +"2010607","W1374 WELL NO IRR 06","SHRIVER #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1374","","07061137/07061174, 1502006","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NE","12","38.0 N","8.0 E","N","","","","","407647.0","4157463.0","37.559567","-106.045661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010607", +"2010742","W1449 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","1329-R","10061887/072019004003","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","11","38.0 N","8.0 E","N","","","","","406080.0","4157132.0","37.556426","-106.063358","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010742", +"2010743","W1449 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","1330-R","10061901/072019003991","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NE","11","38.0 N","8.0 E","N","","","","","406078.0","4157363.0","37.558507","-106.063410","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010743", +"2010744","W1449 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1449","4458-F","05062245/05062209","ZIEGLER, AARON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","11","38.0 N","8.0 E","N","","","","","405771.0","4157308.0","37.557980","-106.066878","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010744", +"2010783","W1459 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1459","8600-R","11061446/11061677","MARTINEZ, DEBRA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","4","38.0 N","8.0 E","N","","","","","402005.0","4159081.0","37.573565","-106.109747","06/20/2022 16:18","https://dwr.state.co.us/Tools/Structures/2010783", +"2010784","W1459 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1459","8599-R","11061450/11061678","MARTINEZ, DEBRA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","4","38.0 N","8.0 E","N","","","","","401951.0","4158835.0","37.571343","-106.110325","03/10/2023 10:01","https://dwr.state.co.us/Tools/Structures/2010784", +"2010842","W1476 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1476","2251-F","07-8-1080","COOPER, DAVID H.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","15","38.0 N","8.0 E","N","","","","","403356.0","4155061.0","37.537480","-106.093920","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010842", +"2010950","W1554 WELL NO 01","#7 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","227-R-R","01061400/01061432","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","3","38.0 N","8.0 E","N","","","","","404590.0","4157995.0","37.564050","-106.080337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010950", +"2010952","W1554 WELL NO 03","#7 OUTSIDE NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","228-R","17-06581","DEACON, MARK Q.","RGWCD SD2","10/31/2019","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","38.0 N","8.0 E","N","","","","","404185.0","4158267.0","37.566459","-106.084957","02/23/2022 11:40","https://dwr.state.co.us/Tools/Structures/2010952", +"2010953","W1554 WELL NO 04","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","9493-F","01061400/01061432","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","3","38.0 N","8.0 E","N","","","","","404186.0","4158032.0","37.564342","-106.084915","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010953", +"2010954","W1554 WELL NO 06","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1554","4036-F","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","2","38.0 N","8.0 E","N","","","","","405007.0","4158345.0","37.567247","-106.075661","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010954", +"2010955","W1554 WELL NO 08","#5 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, W1554","4964-F","10061967/10062005","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","3","38.0 N","8.0 E","N","","","","","403775.0","4158394.0","37.567561","-106.089616","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010955", +"2010956","W1554 WELL NO 09","#5 CENTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019, W1554","14207-R","10061967/10062005","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","38.0 N","8.0 E","N","","","","","403778.0","4158365.0","37.567300","-106.089578","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010956", +"2011015","W1602 WELL NO 01","63325-F, FKA WDID 2013904, SITTLER FLOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","10CW0026, W1602","63325-F","GP11-2155-4","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","5","38.0 N","8.0 E","N","","","","","400949.0","4158647.0","37.569541","-106.121645","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011015", +"2011237","W1717 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1717","25909-F, 25909-F-R","6558232","FRANCES MAXINE MANN REVOCABLE TRUST (MANN, FRANCES M.); MANN, GREG","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SE","NW","32","40.0 N","6.0 E","N","","","","","381481.0","4169965.0","37.669228","-106.343881","12/02/2020 17:03","https://dwr.state.co.us/Tools/Structures/2011237", +"2011301","W1768 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1768","23855-F","15-13746-8","2-22 LEGACY ROCK LAND LLC; REDDEN, CODY","RGWCD SD2","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","21","39.0 N","7.0 E","N","","","","","392210.0","4164000.0","37.616798","-106.221372","02/06/2026 13:03","https://dwr.state.co.us/Tools/Structures/2011301", +"2011317","W1780 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1780","10618-R","GP13-3211-4","VELASQUEZ, LEONARD E.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SW","33","39.0 N","8.0 E","N","","","","","402015.0","4159460.0","37.576982","-106.109684","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011317", +"2011375","W1803 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","95CW0015, W1803","13677-F","06-07960-03","PALMER, SUNNY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NW","6","38.0 N","8.0 E","N","","","","","398720.0","4158857.0","37.571191","-106.146910","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011375", +"2011469","W1838 WELL NO 01","SHRIVER #6 SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1838","5159-F","07-6-1050","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","12","38.0 N","8.0 E","N","","","","","407402.0","4156740.0","37.553027","-106.048343","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011469", +"2011763","W1994 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1994","1460-R","04116122/11060653","SMITH, GINGER","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","33","40.0 N","6.0 E","N","","","","","383342.0","4170256.0","37.672089","-106.322831","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011763", +"2011938","W2104 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2104","48940-F","11-30-2006-1115","LORENZ, JASON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SW","32","39.0 N","8.0 E","N","","","","","400124.0","4159492.0","37.577067","-106.131100","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011938", +"2012073","W2216 WELL NO 01","COUNTY LINE PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2216","11365-F","19-03115-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","38.0 N","9.0 E","N","","","","","408215.0","4156513.0","37.551063","-106.039112","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012073", +"2012179","W2288 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2288","10273-F","15-04834-8","MALOUFF, BRYAN F.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NE","19","38.0 N","9.0 E","N","","","","","409318.0","4153764.0","37.526397","-106.026287","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012179", +"2012182","W2289 WELL NO 03","TRUCK STOP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2289","5554-F","19-02992-08","MATHEWS, RICHARD; PADGET, PATRICIA; ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","18","38.0 N","9.0 E","N","","","","","409001.0","4155132.0","37.538695","-106.030043","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012182", +"2012191","W2297 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2297","","042015004226","MONTE VISTA SCHOOL DISTRICT C-8 (HOTZ, MARK)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","4","38.0 N","8.0 E","N","","","","","402570.0","4159156.0","37.574301","-106.103360","12/02/2020 17:04","https://dwr.state.co.us/Tools/Structures/2012191", +"2012241","W2334 WELL NO 06","THISTLEDOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2334","2236-F","19-03347-04","COLVILLE, DAVID; THISTLEDOWN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","24","40.0 N","4.0 E","N","","","","","368454.0","4173277.0","37.697295","-106.492146","05/10/2021 13:57","https://dwr.state.co.us/Tools/Structures/2012241", +"2012256","W2344 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2344","13708-R","06-8-3161","TEMPLE, BEAU AND KIMBERLEY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","10","38.0 N","8.0 E","N","","","","","403376.0","4157054.0","37.555443","-106.093957","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012256", +"2012266","W2349 WELL NO 01","FOOTBALL FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2349","","242452311, 242452626","DEL NORTE SCHOOL DIST. #7; TRUJILLO, DEMO","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","NW","32","40.0 N","6.0 E","N","","","","","381323.0","4170496.0","37.673992","-106.345758","06/20/2022 16:14","https://dwr.state.co.us/Tools/Structures/2012266", +"2012273","W2354 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2354","2892-F","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399344.0","4158276.0","37.566024","-106.139765","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012273", +"2012274","W2354 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2354","15072-R","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399402.0","4158269.0","37.565967","-106.139108","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012274", +"2012275","W2354 WELL NO 03","KETTLESON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2354","15071-R, 15073-R","032014000153/06200659","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","6","38.0 N","8.0 E","N","","","","","399396.0","4158254.0","37.565831","-106.139174","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012275", +"2012364","W2430 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0018, W2430","24697-, 24697--A","23034083","GARCIA, MARY GRACE; INDIAN TRAILS WATER LLC (TECZA, JASON & JULIE)","RGWCD SD2","10/31/2020","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","31","40.0 N","4.0 E","N","","","","","361234.1","4170880.0","37.674633","-106.573559","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012364", +"2012409","W2443 WELL NO 01","STEINHARTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2443","2126-F","09062794/04062027","PAULSON, ROCK B. & TERRI RAE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","21","39.0 N","7.0 E","N","","","","","393216.0","4162725.0","37.605426","-106.209789","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012409", +"2012452","W2466 WELL NO 03","BLACK WIDOW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2466","2295-F","8146966","RUE, BRIAN AND ANDREA","RGWCD SD2","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","5","39.0 N","7.0 E","N","","","","","390729.0","4168086.0","37.653444","-106.238761","08/29/2014 11:52","https://dwr.state.co.us/Tools/Structures/2012452", +"2012458","W2469 WELL NO 03","ROBERTS OPEN DISCHARGE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","5541-F","07-10-1061","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SW","30","40.0 N","5.0 E","N","","","","","370177.0","4171442.0","37.681006","-106.472281","05/10/2021 13:58","https://dwr.state.co.us/Tools/Structures/2012458", +"2012459","W2469 WELL NO 04","W. OPEN DITCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2469","6287-F","06-10-1285","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","25","40.0 N","4.0 E","N","","","","","368845.0","4171610.0","37.682331","-106.487412","05/10/2021 13:58","https://dwr.state.co.us/Tools/Structures/2012459", +"2012512","W2520 WELL NO 06","GRAVEL PIT ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2520","","25-00883-04","CLAIR, DON; RAKHRA MUSHROOM FARM CORP; ROCKY MOUNTAIN SOILS","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","26","38.0 N","10.0 E","N","","","","","425291.0","4151507.0","37.507488","-105.845306","10/29/2009 15:40","https://dwr.state.co.us/Tools/Structures/2012512", +"2012529","W2534 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2534","5977-R","06-6-1181","SCHAEFER, SCOT & MICHELLE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","5","38.0 N","8.0 E","N","","","","","400142.0","4158429.0","37.567490","-106.130752","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012529", +"2012553","W2542 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2542","8447-R","8843863","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","NE","36","39.0 N","7.0 E","N","","","","","398230.0","4160355.0","37.584637","-106.152666","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012553", +"2012558","W2545 WELL NO 02","HAGEDORN #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","601-R-R","06-8-2823","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","9","38.0 N","8.0 E","N","","","","","402568.0","4157579.0","37.560089","-106.103173","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012558", +"2012559","W2545 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","602-R","07-4-1007","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","9","38.0 N","8.0 E","N","","","","","402570.0","4157538.0","37.559720","-106.103145","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012559", +"2012560","W2545 WELL NO 04","HAGEDORN #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","3136-F","05-8-4374","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","9","38.0 N","8.0 E","N","","","","","402565.0","4157344.0","37.557971","-106.103175","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012560", +"2012561","W2545 WELL NO 05","PERMIT 412-RF","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2545","12069-F","10061973/10062001","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","4","38.0 N","8.0 E","N","","","","","401778.0","4158313.0","37.566620","-106.112214","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012561", +"2012585","W2549 WELL NO 01","MINI PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2549","1610-R","12061239/12061317","HART, JAMES N. & MARIA L.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","24","39.0 N","7.0 E","N","","","","","398311.0","4163215.0","37.610419","-106.152146","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012585", +"2012590","W2551 WELL NO IRR 06","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0008, W2551","12850-R, 12850-R-R","05062329","KING, WILLIAM; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","20","38.0 N","9.0 E","N","","","","","410039.0","4154185.0","37.530262","-106.018180","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012590", +"2012591","W2551 WELL NO IRR 07","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","13CW0008, W2551","12849-R","05082827","KING, WILLIAM; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","NW","NW","20","38.0 N","9.0 E","N","","","","","410035.0","4153992.0","37.528522","-106.018201","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012591", +"2012649","W2566 WELL NO 01","FLOOD PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2566","1682-R-R","072014000385/12062754","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SW","27","39.0 N","7.0 E","N","","","","","393685.0","4161656.0","37.595847","-106.204322","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012649", +"2012700","W2599 WELL NO 01","HEMMERLING NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","9191-F","06-6-1537","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","16","38.0 N","8.0 E","N","","","","","402546.0","4155988.0","37.545749","-106.103210","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012700", +"2012701","W2599 WELL NO 02","HEMMERLING WEST 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6317-F","21-026230-06","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","16","38.0 N","8.0 E","N","","","","","401753.0","4155746.0","37.543484","-106.112153","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012701", +"2012702","W2599 WELL NO 03","HEMMERLING WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6316-F","07-6-1087","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","NW","16","38.0 N","8.0 E","N","","","","","401749.0","4155497.0","37.541240","-106.112165","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012702", +"2012703","W2599 WELL NO 04","HEMMERLLING SW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6315-F","GP11-4621-6","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","16","38.0 N","8.0 E","N","","","","","401742.0","4155221.0","37.538752","-106.112208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012703", +"2012704","W2599 WELL NO 05","HEMMERLING NW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6318-F, 6318-F-R","03241861/10063672","PFANNENSTIEL, ERIC; ROCKY MOUNTAIN HAY FARMS LLC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NW","16","38.0 N","8.0 E","N","","","","","401758.0","4155998.0","37.545756","-106.112131","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012704", +"2012705","W2599 WELL NO 06","WILLSCHAU","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6320-F-R","07-6-1012","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","9","38.0 N","8.0 E","N","","","","","401778.0","4157191.0","37.556509","-106.112064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012705", +"2012708","W2599 WELL NO 11","CALDON #1: N WELL (CASEY)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2599","6319-F","12061218/12061394","ARCHER, RODNEY; ARCHER, RODNEY AND JEANNE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","5","38.0 N","8.0 E","N","","","","","400951.0","4157629.0","37.560368","-106.121485","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012708", +"2013546","W3691 WELL NO 03R","#1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3691","14440-R","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NE","13","38.0 N","8.0 E","N","","","","","407801.0","4155531.0","37.542171","-106.043674","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013546", +"2013593","W3842 WELL NO 01R","JAMES PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3842","1829-R-R","GP06-8-4916","DUGAN, BOB & CAROL; RHOADS, RYAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","21","39.0 N","7.0 E","N","","","","","393304.0","4163517.0","37.612573","-106.208908","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013593", +"2013611","W3895 WELL NO 08R","CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0022, W3895","3885-F-R","25-06094-06","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","38.0 N","8.0 E","N","","","","","404532.0","4154778.0","37.535052","-106.080575","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013611", +"2013689","94CW009 WELL NO 05A","W SPK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","94CW0009","42294-F","11061515/072014000399","DAVIE, RICK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","25","40.0 N","4.0 E","N","","","","","369273.0","4171511.0","37.681500","-106.482542","05/10/2021 14:00","https://dwr.state.co.us/Tools/Structures/2013689", +"2013700","95CW001 WELL NO 02A","BLUE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","95CW0001","38406-F","06-6-1904","SEGER, GARY V.","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NE","NW","18","38.0 N","9.0 E","N","","","","","408649.0","4155550.0","37.542427","-106.034079","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013700", +"2013766","98CW040 HOMELAKE WELL 7","CEMETERY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0040","53185-F","07083705/05083072","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","33","39.0 N","8.0 E","N","","","","","402982.0","4159427.0","37.576787","-106.098731","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013766", +"2013768","98CW040 HOMELAKE WELL 9","SOUTHWEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0040","53187-F","07083706/16090022","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","33","39.0 N","8.0 E","N","","","","","402973.0","4159188.0","37.574632","-106.098801","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013768", +"2013772","98CW001 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0001","48170-F, 48170-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","33","38.0 N","9.0 E","N","","","","","412628.0","4150987.0","37.501690","-105.988502","07/14/2009 14:27","https://dwr.state.co.us/Tools/Structures/2013772", +"2013773","98CW001 WELL NO 1AA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0001","48171-F, 48171-F-R","15-01766-8","ZIEGLER, GERALD; ZIEGLER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NE","33","38.0 N","9.0 E","N","","","","","412431.0","4151002.0","37.501806","-105.990732","07/14/2009 14:20","https://dwr.state.co.us/Tools/Structures/2013773", +"2013776","98CW020 WELL NO 1R","2010021 ORGINAL WELL, FIELD 2, NORTH POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0012, 98CW0020","1870-R-R","09062696-100093","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","9","38.0 N","8.0 E","N","","","","","402564.0","4156783.0","37.552915","-106.103112","04/10/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013776", +"2013785","98CW024 WELL NO 1A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0024","47402-F","05060754/05060783","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NW","10","38.0 N","8.0 E","N","","","","","403827.0","4157209.0","37.556887","-106.088872","05/15/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013785", +"2013786","98CW025 WELL NO 1AA","FIELD 6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","98CW0025","48407-F","05060754/05060783","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","10","38.0 N","8.0 E","N","","","","","403873.0","4157187.0","37.556694","-106.088348","03/19/2001 00:00","https://dwr.state.co.us/Tools/Structures/2013786", +"2013870","2002CW0032 WELL NO 2R","COTTEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","02CW0032","58599-F","052015002589/01062077","SEGER, BART W. & RUTHANNA R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","19","39.0 N","8.0 E","N","","","","","399965.0","4163044.0","37.609060","-106.133386","10/17/2007 15:44","https://dwr.state.co.us/Tools/Structures/2013870", +"2013898","09CW0019 WELL NO 2-AAA","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0019","42411-F","19-02640-08","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","4","38.0 N","8.0 E","N","","","","","403348.0","4158019.0","37.564137","-106.094401","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2013898", +"2013903","PERMIT 44605 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","44605-F","02072436/07242528","MEADOWBROOK VILLAGE TOWNHOMES ASSOC.; RIGGENBACH, SUSAN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","36","39.0 N","7.0 E","N","","","","","397206.0","4160342.0","37.584406","-106.164260","09/18/2024 09:26","https://dwr.state.co.us/Tools/Structures/2013903", +"2013923","PERMIT 42821 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","42821-F","05060229/05060269","FORREST, RICH","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","32","40.0 N","5.0 E","N","","","","","372038.0","4170882.0","37.676222","-106.451084","05/10/2021 14:00","https://dwr.state.co.us/Tools/Structures/2013923", +"2013926","PERMIT 34660 F","SLATTERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","34660-F","18-05476-08","MOSBY, DAVID JASON & JENNIFER; PDR DEL NORTE, LP","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","21","40.0 N","6.0 E","N","","","","","382639.0","4172365.0","37.691003","-106.331140","07/11/2007 14:29","https://dwr.state.co.us/Tools/Structures/2013926", +"2013976","PERMIT 57101-F","PERRY #1 EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57101-F","02-01565-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","23","38.0 N","8.0 E","N","","","","","406196.0","4153976.0","37.527996","-106.061641","07/07/2009 14:17","https://dwr.state.co.us/Tools/Structures/2013976", +"2014008","PERMIT 25154-F-","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","25154-F","05083045/12062756","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","27","39.0 N","7.0 E","N","","","","","394086.0","4162113.0","37.600012","-106.199846","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014008", +"2014011","PERMIT 39866-F-","WAREHOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","39866-F","01071324/01070528","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","36","39.0 N","7.0 E","N","","","","","398246.0","4160504.0","37.585981","-106.152505","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014011", +"2014056","20CW0022 WELL NO. 8-RS","NW SUBM, REPLACED 2013611","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","20CW0022","85393-F","20-06951-04","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2021","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","15","38.0 N","8.0 E","N","","","","","404300.0","4155150.0","37.538381","-106.083249","05/03/2023 11:10","https://dwr.state.co.us/Tools/Structures/2014056", +"2014062","09CW0019 WELL NO 1AA","#3 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","09CW0019","46473-F","GP13-4858","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","4","38.0 N","8.0 E","N","","","","","402924.0","4158398.0","37.567508","-106.099251","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2014062", +"2014063","09CW0019 WELL NO 1-A","#3 OUTSIDE WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0019","34578-F","07-8-1567","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","4","38.0 N","8.0 E","N","","","","","402439.0","4158434.0","37.567781","-106.104747","11/05/2025 14:26","https://dwr.state.co.us/Tools/Structures/2014063", +"2014064","PERMIT 46565-F-","BURD'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46565-F","07-8-1542","BURD, CHARLES W.; RUTGERS, JAMES","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","7","38.0 N","8.0 E","N","","","","","399708.0","4157251.0","37.556827","-106.135504","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014064", +"2014065","24CW0003 WELL NO 2A","CORZINE HALF CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","24CW0003","25273-F","100929/12061368","CORZINE, CLAYTON E. & LISA M.; DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","11","38.0 N","8.0 E","N","","","","","405568.0","4156803.0","37.553409","-106.069111","11/05/2025 13:21","https://dwr.state.co.us/Tools/Structures/2014065", +"2014066","06CW29 WELL NO 1-R","BROWN #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","06CW0029, W0205","1837-R-R","03062392/03062374","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","38.0 N","8.0 E","N","","","","","406990.0","4156337.0","37.549354","-106.052956","03/22/2013 15:51","https://dwr.state.co.us/Tools/Structures/2014066", +"2014067","PERMIT 3034-F-","SHRIVER #6 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","3034-F","100582/11060692","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","12","38.0 N","8.0 E","N","","","","","407407.0","4156883.0","37.554316","-106.048304","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014067", +"2014068","PERMIT 23412-F-R","#2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23412-F-R","05-8-4726","CALDON, CASEY F.; PERRY, THOMAS R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","14","38.0 N","8.0 E","N","","","","","405906.0","4155139.0","37.538447","-106.065072","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014068", +"2014069","PERMIT 23571-F-","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23571-F","09060706/09060735","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","15","38.0 N","8.0 E","N","","","","","404580.0","4154779.0","37.535066","-106.080032","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014069", +"2014070","PERMIT 59415-F-","#5 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","59415-F","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","17","38.0 N","8.0 E","N","","","","","401327.0","4155608.0","37.542195","-106.116956","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014070", +"2014071","W2599 WELL NO 02","#5 ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","60953-F","07-8-1481, 10061896/10062087","WIDGER, KAREN","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","17","38.0 N","8.0 E","N","","","","","400921.0","4155937.0","37.545116","-106.121596","01/07/2009 16:22","https://dwr.state.co.us/Tools/Structures/2014071", +"2014072","PERMIT 57100-F-","P #1 SOUTH OF PIVOT, THIS WELL REPLACED 2013964","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","57100-F","02-01563-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","23","38.0 N","8.0 E","N","","","","","406043.0","4153933.0","37.527593","-106.063367","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014072", +"2014075","2005CW017 WELL NO 2S","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","05CW0017","46036-F","96-6-1023","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406654.0","4154323.0","37.531169","-106.056503","04/06/2021 17:58","https://dwr.state.co.us/Tools/Structures/2014075", +"2014076","2005CW017 WELL NO 1S","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0017","46037-F","24-02415","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406579.0","4154131.0","37.529431","-106.057327","12/02/2020 17:33","https://dwr.state.co.us/Tools/Structures/2014076", +"2014077","PERMIT 59455-F-","FIELD 1, WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","59455-F","12212658/09062012","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","10","38.0 N","8.0 E","N","","","","","403446.0","4156337.0","37.548989","-106.093070","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014077", +"2014095","PERMIT 21109-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","21109-F","06-6-1617","ZAHRINGER, JASON","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","11","38.0 N","10.0 E","N","","","","","424566.0","4156610.0","37.553421","-105.854032","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014095", +"2014096","2006CW014 WELL NO 2","#16, P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23240-F","052018001052/052018002660","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","15","38.0 N","10.0 E","N","","","","","423007.0","4154593.0","37.535113","-105.871469","07/31/2008 09:18","https://dwr.state.co.us/Tools/Structures/2014096", +"2014097","2006CW014 WELL NO 2A","#16, SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23533-F","12212654/12212593","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","15","38.0 N","10.0 E","N","","","","","422897.0","4154532.0","37.534554","-105.872707","07/31/2008 09:32","https://dwr.state.co.us/Tools/Structures/2014097", +"2014098","2006CW014 WELL NO 2B","#16, NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23534-F","09212320/12212586","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","15","38.0 N","10.0 E","N","","","","","422896.0","4154663.0","37.535735","-105.872732","07/31/2008 09:33","https://dwr.state.co.us/Tools/Structures/2014098", +"2014099","2006CW014 WELL NO 3","#17, P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23239-F","072017001410/12061499","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","38.0 N","10.0 E","N","","","","","423773.0","4154188.0","37.531527","-105.862758","07/31/2008 09:38","https://dwr.state.co.us/Tools/Structures/2014099", +"2014104","PERMIT 36757-F-","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","36757-F","23-08681-08","SOUTH WIND DAIRY LTD CO (SQUIRE, ALLEN G.); ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","17","38.0 N","9.0 E","N","","","","","410819.0","4154650.0","37.534529","-106.009410","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2014104", +"2014108","2006CW014 WELL NO 3B","#17 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23531-F","12061061","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","22","38.0 N","10.0 E","N","","","","","423663.0","4154161.0","37.531275","-105.864000","07/31/2008 09:45","https://dwr.state.co.us/Tools/Structures/2014108", +"2014109","2006CW014 WELL NO 3A","#17 E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","06CW0014","23532-F","05221561","CURTIS FARMS, LLC (CURTIS, CLIFTON); FPI COLORADO LLC (FARMLAND PARTNERS, INC.)","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NE","22","38.0 N","10.0 E","N","","","","","423750.0","4154061.0","37.530380","-105.863005","07/31/2008 09:42","https://dwr.state.co.us/Tools/Structures/2014109", +"2014171","PERMIT 20721-F-R","ARAGON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20721-F, 20721-F-R","GP10-3748-8","MALOUFF, NEFF & JERICA","RGWCD SD2","10/31/2013","10/31/2025","3","20","ALAMOSA","","","","NW","SW","11","38.0 N","10.0 E","N","","","","","424240.0","4156526.0","37.552637","-105.857714","06/04/2019 10:53","https://dwr.state.co.us/Tools/Structures/2014171", +"2014221","2009CW9 WELL NO 10-A","CASEY #1 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","09CW0009","36272-F","10063524/10063706","ARCHER, RODNEY","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NW","8","38.0 N","8.0 E","N","","","","","400950.0","4157226.0","37.556736","-106.121441","08/19/2013 14:52","https://dwr.state.co.us/Tools/Structures/2014221", +"2014246","PERMIT 4412-FR","WRIGHT #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","4412-F-R","19-02993-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","17","38.0 N","9.0 E","N","","","","","410188.0","4154670.0","37.534648","-106.016553","12/08/2010 16:46","https://dwr.state.co.us/Tools/Structures/2014246", +"2014331","05CW018 WELL NO 1R","WELL #1 NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","05CW0018","30082-F, 61907-F","90049968","GARCIA, MARY GRACE; INDIAN TRAILS WATER LLC (TECZA, JASON & JULIE)","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","31","40.0 N","4.0 E","N","","","","","361250.0","4171125.0","37.676841","-106.573413","08/12/2022 08:42","https://dwr.state.co.us/Tools/Structures/2014331", +"2014340","PERMIT 22628-F","WRIGHT #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","22628-F","19-02993-08","ZIEGLER, GERALD ","RGWCD SD2","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","17","38.0 N","9.0 E","N","","","","","410372.0","4154659.0","37.534566","-106.014469","07/22/2008 11:15","https://dwr.state.co.us/Tools/Structures/2014340", +"2014349","PERMIT 57468-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","57468-F","07-8-1079","COOPER, MIKE","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","9","38.0 N","8.0 E","N","","","","","402219.0","4156498.0","37.550311","-106.106979","07/29/2008 13:19","https://dwr.state.co.us/Tools/Structures/2014349", +"2014356","PERMIT 10085-SR","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","10085-S-R","06052206/100489","DEACON, MARK Q.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","2","38.0 N","8.0 E","N","","","","","405019.0","4157963.0","37.563806","-106.075476","08/04/2008 13:08","https://dwr.state.co.us/Tools/Structures/2014356", +"2014362","2007CW003 WELL NO 1R","N. TRUJILLO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","07CW0003","11460-R-R","06-6-2014","SITTLER, CHRIS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","5","38.0 N","8.0 E","N","","","","","400528.0","4158912.0","37.571884","-106.126447","08/12/2008 10:59","https://dwr.state.co.us/Tools/Structures/2014362", +"2014376","PERMIT 59454-F","FIELD 1, WELL #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","59454-F","09061947/09062022","MUELLER, MIKE; TRIPLE M FARMS","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","10","38.0 N","8.0 E","N","","","","","403369.0","4156483.0","37.550297","-106.093961","11/24/2008 10:32","https://dwr.state.co.us/Tools/Structures/2014376", +"2014467","PERMIT 90232-F","SHAW CREEK REST AREA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","31138-, 90232-F","","COLORADO DEPARTMENT OF TRANSPORTATION (LOPEZ, GERALD); GARCIA, MARY GRACE","RGWCD SD2","10/31/2011","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","28","40.0 N","4.0 E","N","","","","","363716.0","4171513.0","37.680709","-106.545542","09/25/2025 11:33","https://dwr.state.co.us/Tools/Structures/2014467", +"2014471","23CW0009 WELL NO 1R","FKA 2009791, NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","23CW0009","13796-R-R, 89892-F","11061443/11061672-100720","HAMILTON, JUDY J.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","14","38.0 N","8.0 E","N","","","","","404979.0","4155918.0","37.545372","-106.075664","11/05/2025 13:22","https://dwr.state.co.us/Tools/Structures/2014471", +"2014482","PERMIT 14878-R-R","MARTIN S. RES., REPLACED 2011906 (14878-R)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","14878-R-R","15-07737-6","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD2","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","11","38.0 N","8.0 E","N","","","","","405673.0","4156091.0","37.547003","-106.067831","10/16/2013 08:29","https://dwr.state.co.us/Tools/Structures/2014482", +"2014510","PERMIT 11180RR","FKA 2012570, PIERCE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","11180-R","12062520/12062758","HINTON RANCH LLC; HINTON, ERIC","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","27","39.0 N","7.0 E","N","","","","","394496.0","4161728.0","37.596589","-106.195147","12/02/2020 17:18","https://dwr.state.co.us/Tools/Structures/2014510", +"2014519","SHRIVER CAN PUMP","SURFACE WATER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","75.80","","","01062062/01062086, 14-17788-8","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2015","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","13","38.0 N","8.0 E","N","","","","","407411.0","4155818.0","37.544719","-106.048125","01/06/2016 16:17","https://dwr.state.co.us/Tools/Structures/2014519", +"2014526","SURFACE RECORDER","OUTCULT/SHRIVER DATA RECORDER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","77.40","","","03061813/03061881, 1502007","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","2","38.0 N","8.0 E","N","","","","","405551.0","4158348.0","37.567330","-106.069503","12/05/2017 15:47","https://dwr.state.co.us/Tools/Structures/2014526", +"2014534","13CW0006 WELL NO 3-R","#6 CENTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW0006","80657-F","05119254/10062079","DEACON, MARK Q.","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","3","38.0 N","8.0 E","N","","","","","403767.0","4158003.0","37.564037","-106.089655","12/02/2020 17:20","https://dwr.state.co.us/Tools/Structures/2014534", +"2014536","SURFACE RECORDER","SHRIVER DATA RECORDER","Active Structure with contemporary diversion records (A)","MEASURING POINT","RIO GRANDE","01385432","75.69","","","07061137/07061174, 1502006","DEACON, MARK Q.; SHRIVER, KARLA","RGWCD SD2","10/31/2017","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","12","38.0 N","8.0 E","N","","","","","407659.0","4157465.0","37.559587","-106.045525","12/05/2017 15:48","https://dwr.state.co.us/Tools/Structures/2014536", +"2014580","18CW0006 WELL NO 4R NORTH WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","18CW0006","90524-F","07-4-1017","BROWN, TYLER J. AND LYNNE R.","RGWCD SD2","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","29","40.0 N","6.0 E","N","","","","","381871.0","4170683.0","37.675748","-106.339576","11/05/2025 13:32","https://dwr.state.co.us/Tools/Structures/2014580", diff --git a/Data/SBD_Data/StructureList_SBD3.csv b/Data/SBD_Data/StructureList_SBD3.csv new file mode 100644 index 0000000..9e79b9c --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD3.csv @@ -0,0 +1,139 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2105004","W1771 WELL NO 01","DUNN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1771","20755-R","06-10-1392","G.L. BAGWELL & SONS (BAGWELL, LEE & GRACE)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","36","35.0 N","9.0 E","N","","","","","416013.0","4120257.0","37.225046","-105.946724","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105004", +"2105023","82CW008 WELL NO 01R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0008","12519-R-R","06-10-1459","SHAWCROFT, BART A. & STEPHANIE R.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SE","12","35.0 N","9.0 E","N","","","","","416963.0","4127268.0","37.288320","-105.936799","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105023", +"2105085","W0398 WELL NO 01","ORTEGA WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0398","5053-F","22-03018-12","POLKOWSKE, AARON & TIFFANIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","29","35.0 N","9.0 E","N","","","","","410502.0","4122375.0","37.243622","-106.009090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105085", +"2105127","W0489 WELL NO 01","GIBSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0489","21027-R","24-04010-10","GIBSON, MAURICE & IRENE (GIBSON, MAURICE & IRENE)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","27","35.0 N","9.0 E","N","","","","","413983.0","4121955.0","37.240164","-105.969799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105127", +"2105158","W0658 WELL NO 01","SHAWCROFT 285 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW0009, W0658","1141-R","12062630/12062671","SHAWCROFT, CHARLIE & TANNA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","11","35.0 N","9.0 E","N","","","","","415309.0","4127926.0","37.294101","-105.955531","12/05/2007 08:20","https://dwr.state.co.us/Tools/Structures/2105158", +"2105181","W0797 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0797","3628-F","21-04767-10","FINNEGAN, CHUCK; FINNEGAN, VALERIE & KEYS, NAOMI","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","25","35.0 N","9.0 E","N","","","","","416044.0","4121883.0","37.239703","-105.946558","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105181", +"2105229","W0930 WELL NO 01","CR U WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0930","5339-F","07-12-1048","FINNEGAN, CHUCK; MARTINEZ, JOSEPH A. (TONY)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","26","35.0 N","9.0 E","N","","","","","414421.0","4121970.0","37.240340","-105.964863","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105229", +"2105231","W0932 WELL NO 01","DON'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0932","5106-F, 329438-","07-10-1119","LARSEN, DON; LARSEN, RHETT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","35.0 N","9.0 E","N","","","","","415242.0","4122746.0","37.247409","-105.955697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105231", +"2105256","W1178 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1178","12083-R","06-8-3912","MORTENSEN, ARNOLD; MORTENSEN, SHANE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","19","35.0 N","10.0 E","N","","","","","418100.0","4123864.0","37.257741","-105.923598","09/17/2007 14:42","https://dwr.state.co.us/Tools/Structures/2105256", +"2105318","W1368 WELL NO 02","LA JARA CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1368","","6865277","LA JARA CEMETERY DISTRICT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","NW","11","35.0 N","9.0 E","N","","","","","414742.0","4128339.0","37.297771","-105.961975","07/23/2024 15:40","https://dwr.state.co.us/Tools/Structures/2105318", +"2105354","W1487 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1487","12680-R","07-10-1068","RUYBAL, THOMAS","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","28","35.0 N","9.0 E","N","","","","","411168.0","4122004.0","37.240342","-106.001538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105354", +"2105382","W1692 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3002, W1692","4604-F, 90219-F","05083022/12062659","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); MARTINEZ, LEROY & ROSALIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SW","27","35.0 N","9.0 E","N","","","","","413263.0","4121978.0","37.240305","-105.977918","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105382", +"2105383","W1692 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3002, W1692","3498-F, 90220-F","07-10-1386, 25-07846-08","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS); MARTINEZ, LEROY & ROSALIE","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","27","35.0 N","9.0 E","N","","","","","412830.0","4122783.0","37.247520","-105.982894","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105383", +"2105400","W1718 WELL NO 04","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1718","23868-F","6905049","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","27","35.0 N","9.0 E","N","","","","","413905.0","4122850.0","37.248223","-105.970782","07/23/2024 15:41","https://dwr.state.co.us/Tools/Structures/2105400", +"2105401","W1718 WELL NO 05","IRRIGATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1718","23869-F, 23869-F-R","23-06553-03","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","27","35.0 N","9.0 E","N","","","","","413883.0","4122848.0","37.248203","-105.971030","07/23/2024 15:41","https://dwr.state.co.us/Tools/Structures/2105401", +"2105404","W1726 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1726","3782-F","5102514","CONEJOS COUNTY HOSPITAL (WEIDERSPON, ZACH)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SE","NE","22","35.0 N","9.0 E","N","","","","","414354.0","4124481.0","37.262965","-105.965908","06/20/2022 16:23","https://dwr.state.co.us/Tools/Structures/2105404", +"2105408","W1752 WELL NO 01","SCOTT JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1752","2586-F","07-8-1485","JOHNSON, SCOTT (LA JARA)","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NE","SW","SW","24","35.0 N","9.0 E","N","","","","","416309.0","4123561.0","37.254851","-105.943759","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105408", +"2105429","W1849 WELL NO 01","HWY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1849","4165-F","11061533/11061560","SHAWCROFT, BRETT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SE","14","35.0 N","9.0 E","N","","","","","415750.0","4125166.0","37.269266","-105.950243","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105429", +"2105444","W1942 WELL NO 04","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1942","14555-","100950/12062792","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","23","35.0 N","9.0 E","N","","","","","414499.0","4124143.0","37.259932","-105.964234","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105444", +"2105445","W1942 WELL NO 05","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1942","14318-","12061185/12061434-100776","CROWTHER, GLORIA & LONELL; CROWTHER, RYAN, LONELL & GLORIA","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","NE","NW","SW","23","35.0 N","9.0 E","N","","","","","414670.0","4124147.0","37.259983","-105.962306","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105445", +"2105555","W2142 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2142","3118-F","GP12-4493-8","BOND, BART; GARTRELL, JAY; PETERSON, STEVEN","RGWCD SD3","10/31/2012","10/31/2025","3","21","CONEJOS","","","SW","SE","NW","17","35.0 N","10.0 E","N","","","","","419837.0","4125867.0","37.275945","-105.904228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105555", +"2105622","W2248 WELL NO 01","EAST FEED LOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2248","14278-F","12061422-100745","CROWTHER, LEON C.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","24","35.0 N","9.0 E","N","","","","","417474.0","4123458.0","37.254026","-105.930612","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105622", +"2105623","W2248 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2248","14277-F","052016002841/12061424","CROWTHER, LEON C.","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","24","35.0 N","9.0 E","N","","","","","417125.0","4123461.0","37.254022","-105.934547","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105623", +"2105896","22CW0012 WELL NO 1R","SANFORD CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0012","17117-F, 17117-F-R","8415201","LARSEN, LORRAINE; MCCARROLL, TARA; RUSSELL, CORY; SANFORD CEMETERY DISTRICT","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","NE","31","35.0 N","10.0 E","N","","","","","419180.0","4121644.0","37.237827","-105.911179","11/05/2025 13:25","https://dwr.state.co.us/Tools/Structures/2105896", +"2105907","PERMIT 41550-F","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","41550-F","6905049","NORTH CONEJOS SCHOOLS; RUYBAL, RICH","RGWCD SD3","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","27","35.0 N","9.0 E","N","","","","","413856.0","4122863.0","37.248336","-105.971336","05/29/2024 08:37","https://dwr.state.co.us/Tools/Structures/2105907", +"2205001","W1766 WELL NO IRR 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1766","246-R","07-10-1113","WILLETT CATTLE COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NE","SW","5","35.0 N","11.0 E","N","","","","","429393.0","4128686.0","37.302127","-105.796717","12/02/2020 16:30","https://dwr.state.co.us/Tools/Structures/2205001", +"2205002","W1769 WELL NO 01","PAULSON WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1769","8667-R","07-10-1002","REED, STEVE; TRIPLE R RANCHES LLC (REED, BRADLEY J.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","SW","4","34.0 N","10.0 E","N","","","","","421405.0","4118587.0","37.210464","-105.885775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205002", +"2205004","W1938 WELL NO 02","3000 GAL WELL NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1938","10946-R, 13618-R","07-10-1044","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NW","SE","SE","14","35.0 N","10.0 E","N","","","","","425427.0","4125442.0","37.272579","-105.841138","09/17/2007 14:55","https://dwr.state.co.us/Tools/Structures/2205004", +"2205005","W1938 WELL NO 03","3600 GAL WELL SPRINKLER, SETTLEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1938","4713-F","07-12-1022","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","13","35.0 N","10.0 E","N","","","","","425754.0","4125457.0","37.272740","-105.837452","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205005", +"2205006","W2382 WELL NO 03","PUMPSTATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","20744-R","06-10-1371","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","SW","18","34.0 N","9.0 E","N","","","","","408460.0","4115552.0","37.181930","-106.031273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205006", +"2205007","W2407 WELL NO 01","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2407","11394-R","23-05456","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","7","34.0 N","9.0 E","N","","","","","408865.0","4117938.0","37.203474","-106.027002","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205007", +"2205010","W2594 WELL NO 03","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2594","2068-F, 8258-R","06-10-1541","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","19","34.0 N","9.0 E","N","","","","","407889.0","4113907.0","37.167048","-106.037502","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205010", +"2205012","MANASSA TOWN WELL NO 1","NORTH WELL, W3471 WELL NO 01 DOTSUN STREET WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0071, W3471","22011-F-R","02070426","GAREL, PAUL; MANASSA, TOWN OF","RGWCD SD3","10/31/1992","10/31/2025","3","22","CONEJOS","","","SW","NW","NE","24","34.0 N","9.0 E","N","","","","","416829.0","4115142.0","37.179018","-105.936957","12/02/2020 14:26","https://dwr.state.co.us/Tools/Structures/2205012", +"2205013","MANASSA TOWN WELL NO 2","SOUTH WELL, W3471 WELL NO 02 JACK ST. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0071, W3471","22012-F","03072147","GAREL, PAUL; MANASSA, TOWN OF","RGWCD SD3","10/31/1994","10/31/2025","3","22","CONEJOS","","","NW","SW","SE","24","34.0 N","9.0 E","N","","","","","416913.0","4113953.0","37.168309","-105.935878","12/02/2020 14:27","https://dwr.state.co.us/Tools/Structures/2205013", +"2205015","W3434 WELL NO 01","WELL NO. 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0025, W3434","20719-F","N1N4220181","GAREL, PAUL; ROMEO, TOWN OF","RGWCD SD3","10/31/1992","10/31/2025","3","22","CONEJOS","","","SW","NE","SE","21","34.0 N","9.0 E","N","","","","","412558.0","4114276.0","37.170822","-105.984963","12/02/2020 16:06","https://dwr.state.co.us/Tools/Structures/2205015", +"2205018","82CW136 WELL NO 01A","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","82CW0136","22258-F, 22258-F-R","12062532/12062760","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","17","34.0 N","9.0 E","N","","","","","409973.0","4115953.0","37.185691","-106.014279","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205018", +"2205019","W2455 WELL NO 01","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2455","280-R","12062498/12062761","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","20","34.0 N","9.0 E","N","","","","","409587.0","4114748.0","37.174794","-106.018481","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205019", +"2205021","82CW179 WELL NO 03A","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0179, 92CW0022","25267-F, 15123-R-R, 90506-F","11060559/072019003998","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","23","34.0 N","9.0 E","N","","","","","414714.0","4114233.0","37.170634","-105.960676","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2205021", +"2205041","W1924 WELL NO 01","ANTONITO TOWN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1924","3116-F","L6004C16000/L6004C16000","ANTONITO, TOWN OF (DURAN, ROSSI)","RGWCD SD3","10/31/1993","10/31/2025","3","22","CONEJOS","","","NW","NE","NE","30","33.0 N","9.0 E","N","","","","","409175.0","4104120.0","37.078966","-106.021833","12/02/2020 14:25","https://dwr.state.co.us/Tools/Structures/2205041", +"2205043","GUADALUPE WATER ASC WELL","W0657 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0657","12905-F","23003809","GUADALUPE WATER ASSC (WHITE BUFFALO, RAY)","RGWCD SD3","10/31/2011","10/31/2025","3","22","CONEJOS","","","NW","SW","SE","18","33.0 N","9.0 E","N","","","","","408864.0","4106018.0","37.096042","-106.025562","04/06/2021 18:16","https://dwr.state.co.us/Tools/Structures/2205043", +"2205050","W0071 WELL NO 01","T2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0071","15283-R","12061274/12061308","THOMAS, BRANDON","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","1","34.0 N","9.0 E","N","","","","","416003.0","4118573.0","37.209867","-105.946647","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205050", +"2205051","W0086 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0086","3223-F","06-10-1325","HARMON, JAMES & DEBBIE; LORENZ, BOB; PAINE, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","34","34.0 N","9.0 E","N","","","","","413136.0","4111400.0","37.144955","-105.978119","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205051", +"2205052","W0088 WELL NO 01","ROBBINS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0088","6746-F","GP07-10-1161","ABEYTA, AMOS ALEC & ALICIA ANN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","31","33.0 N","10.0 E","N","","","","","417481.0","4100855.0","37.050306","-105.928040","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205052", +"2205053","W104 WELL NO. 1","ERS4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0104","10153-F","05061452","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SE","35","33.0 N","9.0 E","N","","","","","415050.0","4101569.0","37.056524","-105.955457","03/26/2009 10:05","https://dwr.state.co.us/Tools/Structures/2205053", +"2205054","W0110 WELL NO 01","ERS1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","19CW3006, W0110","10471-F","05061443, 18-07858-08","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","1","32.0 N","9.0 E","N","","","","","415872.0","4099990.0","37.042367","-105.946036","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205054", +"2205055","W0129 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0129","7216-R","11060525/11060641","QUINLAN, WAYNE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","22","33.0 N","9.0 E","N","","","","","413459.0","4104911.0","37.086500","-105.973734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205055", +"2205056","W0133 WELL NO 01","WELL #2, EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","7356-R","07-10-1001","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NE","4","34.0 N","10.0 E","N","","","","","421876.0","4119367.0","37.217534","-105.880549","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205056", +"2205057","W0133 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","7355-R, 7355-R-R","25-04288-12","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","4","34.0 N","10.0 E","N","","","","","420873.0","4119374.0","37.217512","-105.891854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205057", +"2205058","W0133 WELL NO 03","HQ WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","12748-F, 326556-","07-6-1078","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","NW","4","34.0 N","10.0 E","N","","","","","421500.0","4119888.0","37.222198","-105.884842","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205058", +"2205060","W0133 WELL NO 05","POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0133","12749-F","07-6-1077","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","3","34.0 N","10.0 E","N","","","","","422916.0","4119615.0","37.219856","-105.868854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205060", +"2205062","W0145 WELL NO 01","ERS9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0145","6747-F","06-8-1226","SALAZAR, JOHN T. & MARY L.; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","SW","36","33.0 N","9.0 E","N","","","","","416666.0","4101583.0","37.056795","-105.937285","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205062", +"2205063","W0145 WELL NO 02","ERS6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0145","10472-F","05061465","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","6","32.0 N","10.0 E","N","","","","","417468.0","4100725.0","37.049133","-105.928172","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205063", +"2205066","W0147 WELL NO 01","ERS3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0147","6745-F","05061460","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","36","33.0 N","9.0 E","N","","","","","415854.0","4101478.0","37.055777","-105.946405","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205066", +"2205067","W0170 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0170","6310-R","06-6-1314","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","21","34.0 N","9.0 E","N","","","","","412557.0","4115025.0","37.177573","-105.985062","01/30/2017 11:11","https://dwr.state.co.us/Tools/Structures/2205067", +"2205071","W0181 WELL NO 01","ERS2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","21CW3025, W0181","5107-F, 87683-F","03061815","EL RANCHO SALAZAR; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","1","32.0 N","9.0 E","N","","","","","415863.0","4100801.0","37.049675","-105.946228","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205071", +"2205072","W0191 WELL NO 01","BOUNTIFUL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0191","10238-F","10061610/10061619","PAINE, JAMES; PAINE, NATALIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","33","35.0 N","9.0 E","N","","","","","411148.0","4120369.0","37.225604","-106.001569","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205072", +"2205074","W0294 WELL NO 01","#16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0294","3416-F","12062512/06200655","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","22","34.0 N","9.0 E","N","","","","","412817.0","4114667.0","37.174371","-105.982092","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205074", +"2205076","W0335 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0335","11721-R","17-14180-08","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","5","34.0 N","10.0 E","N","","","","","419700.0","4118584.0","37.210292","-105.904988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205076", +"2205094","W0355 WELL NO 01","GARCIA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0355","8634-R","16-05275/16-05275","SALAZAR, LEROY","RGWCD SD3","10/31/2016","10/31/2025","3","22","CONEJOS","","","","SW","SW","14","33.0 N","9.0 E","N","","","","","414287.0","4105716.0","37.093832","-105.964510","10/19/2017 13:41","https://dwr.state.co.us/Tools/Structures/2205094", +"2205110","W0375 WELL NO 01","WELL #3 MARSHAL LAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0375","15488-R","06-12-1121","BAGWELL, BRANDON; BAGWELL, BRANDON & EDDIE GARICA; G.L. BAGWELL & SONS (BAGWELL, LEE & GRACE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SE","12","34.0 N","9.0 E","N","","","","","416812.0","4116993.0","37.195699","-105.937354","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205110", +"2205112","W0397 WELL NO 01","LUCERO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0397","11444-F","06-8-3331","LUCERO, JEANETTE; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","34","33.0 N","9.0 E","N","","","","","413418.0","4101473.0","37.055510","-105.973799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205112", +"2205122","W0476 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0476","","07-6-1150","HOLMAN, CHASE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","34","35.0 N","9.0 E","N","","","","","413000.0","4121078.0","37.232169","-105.980778","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205122", +"2205123","W0490 WELL NO 01","#12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0490","10550-F, 88243-F","06-15-1010","BELLAH, ANGELO; RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE); VANDERPOOL, ROSE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","21","33.0 N","9.0 E","N","","","","","411433.0","4105320.0","37.089997","-105.996574","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205123", +"2205124","W0544 WELL NO 1","STANCIL'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0544","11094-R, 11094-R-R","15-05345-10","PAINE, JAMES; PAINE, NATALIE","RGWCD SD3","10/31/2015","10/31/2025","3","22","CONEJOS","","","","SW","SE","34","34.0 N","9.0 E","N","","","","","413514.0","4110586.0","37.137654","-105.973770","05/01/2019 16:28","https://dwr.state.co.us/Tools/Structures/2205124", +"2205126","W0599 WELL NO 01","LEE-BRADY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","20-WCB","07-10-1110","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","17","34.0 N","10.0 E","N","","","","","419255.0","4116148.0","37.188298","-105.909739","01/30/2008 16:51","https://dwr.state.co.us/Tools/Structures/2205126", +"2205127","W0599 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","5-WCB","07-10-1109","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","SE","SE","NW","17","34.0 N","10.0 E","N","","","","","419897.0","4116228.0","37.189074","-105.902515","09/24/2014 11:32","https://dwr.state.co.us/Tools/Structures/2205127", +"2205128","W0599 WELL NO 03","BRENTS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","21-WCB, 16312-F","20-03617-12","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","5","34.0 N","10.0 E","N","","","","","419352.0","4118568.0","37.210118","-105.908908","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205128", +"2205129","W0599 WELL NO 04","NORTH WELL ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","23-WCB, 16313-F","07-12-1034","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","32","35.0 N","10.0 E","N","","","","","419343.0","4120212.0","37.224934","-105.909187","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205129", +"2205130","W0599 WELL NO 05","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0599","4272-F","07-12-1042","CROWTHER, WARREN D.; EPHRAIM DITCH COMPANY","RGWCD SD3","10/31/2010","10/31/2025","3","22","CONEJOS","","","","NW","SW","5","34.0 N","10.0 E","N","","","","","419284.0","4118961.0","37.213654","-105.909717","05/20/2013 09:15","https://dwr.state.co.us/Tools/Structures/2205130", +"2205131","W0600 WELL NO 01","LUCERO 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0600","10258-F","04061460/062014002082","LUCERO, ALIANZA; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","SE","33","33.0 N","9.0 E","N","","","","","412608.0","4101640.0","37.056940","-105.982927","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205131", +"2205132","W0600 WELL NO 02","LUCERO 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0600","9490-F","06-8-3332","LUCERO, ALIANZA; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","33","33.0 N","9.0 E","N","","","","","411479.0","4101677.0","37.057167","-105.995628","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205132", +"2205141","W0670 WELL NO 1","TIM B'S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0670","3300-F","19-05232","SKADBERG, ADAM","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","31","34.0 N","9.0 E","N","","","","","408689.0","4111460.0","37.145072","-106.028194","10/28/2014 09:23","https://dwr.state.co.us/Tools/Structures/2205141", +"2205142","W0670 WELL NO 02","WELSH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0670","5141-F","22-05470-12","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","NW","19","34.0 N","9.0 E","N","","","","","408323.0","4114720.0","37.174418","-106.032714","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205142", +"2205145","W0715 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0715","5869-R","08061981/08062006","CANTY, JOHN & JANEEN; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","9","35.0 N","10.0 E","N","","","","","421770.0","4126657.0","37.283230","-105.882510","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205145", +"2205147","W0717 WELL NO 01","SW OF CEMETERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0717","11154-R","09062705/11061611","CROWTHER, WARREN D.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","31","35.0 N","10.0 E","N","","","","","418460.0","4121025.0","37.232185","-105.919228","09/17/2007 14:54","https://dwr.state.co.us/Tools/Structures/2205147", +"2205151","W0773 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0773","6266-F, 317388-","07-10-1464","JONES, KEVIN; MARTIN CATTLE CO. (MARTIN, DWIGHT)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","15","35.0 N","10.0 E","N","","","","","423357.0","4125097.0","37.269301","-105.864448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205151", +"2205167","W0879 WELL NO 01","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0879","20312-R, 7716-F","10063602/10063664","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","21","34.0 N","9.0 E","N","","","","","411216.0","4113918.0","37.167469","-106.000035","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205167", +"2205172","W0880 WELL NO 01","#14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","16CW3004, 98CW0007, W0880","2668-F","14-17008-10","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2002","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","31","34.0 N","9.0 E","N","","","","","407867.0","4111462.0","37.145010","-106.037449","01/04/2008 15:16","https://dwr.state.co.us/Tools/Structures/2205172", +"2205173","W0880 WELL NO 02","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","11527-R, 11527-R-R","GEM23080213","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","17","34.0 N","9.0 E","N","","","","","410404.0","4115547.0","37.182074","-106.009375","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205173", +"2205175","W0880 WELL NO 04","#25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","3096-F","02081338/12200766","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","29","34.0 N","9.0 E","N","","","","","409539.0","4112291.0","37.152645","-106.018725","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205175", +"2205176","W0880 WELL NO 05","BROCK, FKA 2206445","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0880","15737-R, 2089-F","06-8-4863","BAGWELL, DOUGLAS; BAGWELL, DOUGLAS T., LYNDA, DOUGLAS BROCK & KAYLA","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","29","34.0 N","9.0 E","N","","","","","410354.0","4113086.0","37.159888","-106.009643","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205176", +"2205182","W0882 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0882","3286-F","8862107","IMERYS PERLITE USA, INC (GROVES, JON)","RGWCD SD3","10/31/2009","10/31/2024","3","22","CONEJOS","","","SE","NW","SE","32","33.0 N","9.0 E","N","","","","","410467.0","4101398.0","37.054557","-106.006975","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205182", +"2205183","W0883 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0883","15390-R","10063598/10063661","ANDERSON 7, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SE","22","34.0 N","9.0 E","N","","","","","413546.0","4113847.0","37.167048","-105.973786","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205183", +"2205186","W0953 WELL NO 02","RUSTY SPUR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0953","5312-F","0070324205, 60483291","QUINLAN, CATHY; ROBINS, RANDALL & LOU ANN","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","29","33.0 N","9.0 E","N","","","","","409621.0","4103136.0","37.070140","-106.016697","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205186", +"2205187","W0974 WELL NO 01","HOME FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0974","8259-R, 8259-R-R","08223631","GINGERICH, WILLIAM","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SW","14","34.0 N","9.0 E","N","","","","","414387.0","4115863.0","37.185295","-105.964546","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205187", +"2205188","W0974 WELL NO 02","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W0974","8260-R, 8260-R-R","06-10-1542","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","20","34.0 N","9.0 E","N","","","","","410378.0","4113939.0","37.167578","-106.009475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205188", +"2205242","W1179 WELL NO 01","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1179","11480-R","02082195/11061638","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","20","34.0 N","9.0 E","N","","","","","410394.0","4114723.0","37.174646","-106.009389","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205242", +"2205243","W1179 WELL NO 02","BAGWELL CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1179","11481-R","06-10-1370","BAGWELL, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","17","34.0 N","9.0 E","N","","","","","409561.0","4116335.0","37.189094","-106.018966","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205243", +"2205261","W1249 WELL NO 02","JACKSON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1249","2012-F, 7282-R","10061897/062019000983","O. D. ESPINOZA & SONS CO. ","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","26","34.0 N","9.0 E","N","","","","","414337.0","4113022.0","37.159685","-105.964783","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205261", +"2205262","W1249 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1249","20793-R","07-10-1226","RANCHO SALAZAR-CERRO LARGO LLC (SALAZAR, LEROY, KEN & JOHN); SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","NW","28","34.0 N","10.0 E","N","","","","","421193.0","4113307.0","37.162857","-105.887607","09/17/2007 14:54","https://dwr.state.co.us/Tools/Structures/2205262", +"2205285","W1308 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1308","11353-R, 78475-F","GP10-2669-10","DUNN, JIMMY L.","RGWCD SD3","10/31/2012","10/31/2025","3","22","CONEJOS","","","","SW","NW","11","34.0 N","9.0 E","N","","","","","414712.0","4117795.0","37.202738","-105.961105","06/02/2014 14:47","https://dwr.state.co.us/Tools/Structures/2205285", +"2205350","W1557 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1557","12428-R","06-10-1205","DUNN, JIMMY L.; JACKSON, DAVID; KELLAND JACKSON FARM","RGWCD SD3","10/31/2011","10/31/2025","3","22","CONEJOS","","","","SE","NW","11","34.0 N","9.0 E","N","","","","","415121.0","4117790.0","37.202730","-105.956496","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205350", +"2205388","W1636 WELL NO 01","POTTBERG PLACE 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1636","8713-R, 8713-R-R","23-00646-10","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","15","34.0 N","9.0 E","N","","","","","413618.0","4115861.0","37.185206","-105.973208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205388", +"2205460","W1692 WELL NO 01","DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0035, W1692","11595-F","95-12-1057N","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2002","10/31/2025","3","22","CONEJOS","","","","SW","SE","9","34.0 N","9.0 E","N","","","","","411896.0","4117103.0","37.196239","-105.992752","02/07/2011 15:34","https://dwr.state.co.us/Tools/Structures/2205460", +"2205502","W1770 WELL NO 01","#19, JOE'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1770","5785-F","06-12-1117","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","10","34.0 N","9.0 E","N","","","","","413504.0","4117840.0","37.203032","-105.974722","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205502", +"2205542","W1814 WELL NO 01","GRANDPA'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1814","10667-F","07-8-1401","MOELLER RANCH, LLC.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","7","33.0 N","9.0 E","N","","","","","407842.0","4107414.0","37.108524","-106.037232","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205542", +"2205555","W1845 WELL NO 01","CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1845","5570-F","07-12-1043","CORTEZ, JORGE & KIMBERLY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","8","34.0 N","9.0 E","N","","","","","409600.0","4117925.0","37.203428","-106.018719","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205555", +"2205556","W1845 WELL NO 02","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W1845","","07-8-1226","CORTEZ, JORGE & KIMBERLY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","8","34.0 N","9.0 E","N","","","","","410323.0","4117916.0","37.203417","-106.010572","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205556", +"2205650","W1938 WELL NO 01","2250 GAL WELL PASTURE, SETTLEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1938","4714-F, 87945-F","25-04389-08","YUND, CHAY; YUND, CHAY C. & JENNIFER A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NW","NW","SW","26","35.0 N","10.0 E","N","","","","","424133.0","4122559.0","37.246490","-105.855438","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205650", +"2205684","W1949 WELL NO 01","RIVER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1949","6446-F","07-10-1150","REYNOLDS, JACK L.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","27","35.0 N","10.0 E","N","","","","","423884.0","4122967.0","37.250147","-105.858287","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205684", +"2205801","W2140 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2140","19965-R","06-10-1249","REED, STEVE; TRIPLE R RANCHES LLC (REED, BRADLEY J.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","NW","27","35.0 N","10.0 E","N","","","","","422657.0","4122643.0","37.247126","-105.872088","09/17/2007 14:53","https://dwr.state.co.us/Tools/Structures/2205801", +"2205904","W2217 WELL NO 1","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2217","11507-R","11061506","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","NE","SE","SE","19","33.0 N","10.0 E","N","","","","","419010.0","4104272.0","37.081237","-105.911214","07/19/2022 08:50","https://dwr.state.co.us/Tools/Structures/2205904", +"2205905","W2217 WELL NO 02","T BONE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11508-R","06-8-3916","TWIN WELLS RANCH LLC & DAGGER DRAW RANCH INC (MCCUTCHEON, STEVE)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","18","33.0 N","10.0 E","N","","","","","418350.0","4105700.0","37.094051","-105.918795","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205905", +"2205906","W2217 WELL NO 03","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11509-R","18-04568-10","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","SW","19","33.0 N","10.0 E","N","","","","","417818.0","4104094.0","37.079529","-105.924604","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205906", +"2205908","W2217 WELL NO 05","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2217","11511-R","GP13-4686-10","BOND, BRENT; MEAGHER, NICK","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","NW","SW","29","33.0 N","10.0 E","N","","","","","419458.0","4102879.0","37.068720","-105.906025","09/17/2007 14:53","https://dwr.state.co.us/Tools/Structures/2205908", +"2205971","W2325 WELL NO 01","#2 WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5929-R","06-10-1290","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NW","28","33.0 N","9.0 E","N","","","","","411807.0","4103330.0","37.072097","-105.992133","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205971", +"2205972","W2325 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5930-R","06-10-1291","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","29","33.0 N","9.0 E","N","","","","","410987.0","4103339.0","37.072100","-106.001357","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205972", +"2205973","W2325 WELL NO 03","#2 EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5931-R","06-10-1292","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","NE","28","33.0 N","9.0 E","N","","","","","412567.0","4103313.0","37.072015","-105.983583","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205973", +"2205974","W2325 WELL NO 04","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","5932-R","06-10-1293","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","21","33.0 N","9.0 E","N","","","","","411021.0","4104270.0","37.080495","-106.001085","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205974", +"2205978","W2325 WELL NO 09","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2325","24316-F, 24316-F-R, 24316-F-R","02-10-1494","ALPHA HAY FARM, LLC; GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","22","33.0 N","9.0 E","N","","","","","413400.0","4104118.0","37.079348","-105.974306","05/09/2007 10:29","https://dwr.state.co.us/Tools/Structures/2205978", +"2205983","W2331 WELL NO 01","MORGAN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","","22-05082-10","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","6","34.0 N","10.0 E","N","","","","","419248.0","4119378.0","37.217409","-105.910167","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205983", +"2205984","W2331 WELL NO 02","CHRISTENSEN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","5563-F","24-06363-12","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SE","NE","6","34.0 N","10.0 E","N","","","","","418992.0","4119392.0","37.217513","-105.913054","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205984", +"2205985","W2331 WELL NO 03","CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0006, W2331","5868-F","23-06129-12","MORGAN, JANET; PARRISH, BILLY; SANFORD CANAL COMPANY (PETERSON, MARTY )","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","NE","30","35.0 N","10.0 E","N","","","","","419292.0","4122641.0","37.246822","-105.910025","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2205985", +"2205986","W2333 WELL NO 01","I MESTAS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2333","11098-R","06-12-1147","MESTAS, JOHN, VICKI, ALEX & ANGIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NW","8","34.0 N","10.0 E","N","","","","","419257.0","4117756.0","37.202791","-105.909890","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205986", +"2206010","W2382 WELL NO 01","#24","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","2877-F","02081337/02081343","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","30","34.0 N","9.0 E","N","","","","","408700.0","4112300.0","37.152644","-106.028173","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206010", +"2206011","W2382 WELL NO 02","BIG CORNER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2382","20744-S","22-04566","BOUNTIFUL FARMS (VANCE, SAM E. & DEBRA D.)","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","18","34.0 N","9.0 E","N","","","","","407906.0","4115540.0","37.181767","-106.037512","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206011", +"2206061","W2456 WELL NO 01","BAGWELL RES, GILLELAND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2456","8714-R","06-10-1391","BAGWELL, JAMES","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","9","34.0 N","9.0 E","N","","","","","411900.0","4117876.0","37.203207","-105.992799","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206061", +"2206064","W2478 WELL NO 01","#26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2478","645-R","02081388","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SW","SE","29","34.0 N","9.0 E","N","","","","","410664.0","4112270.0","37.152564","-106.006055","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206064", +"2206067","W2485 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2485","21023-R","24-03760-08","ROBINS, ADAM","RGWCD SD3","10/31/2025","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","5","33.0 N","9.0 E","N","","","","","409467.0","4109019.0","37.123148","-106.019140","02/06/2026 14:11","https://dwr.state.co.us/Tools/Structures/2206067", +"2206077","W2514 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2514","7294-R","24-05068-12","STAGNER, AMANDA","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SW","9","34.0 N","10.0 E","N","","","","","420925.0","4117494.0","37.200572","-105.891068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206077", +"2206083","W2525 WELL NO 01","#22, DAVIS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2525","14929-R","12061295/06223638","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","12","34.0 N","9.0 E","N","","","","","416006.0","4116996.0","37.195654","-105.946435","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206083", +"2206086","W2531 WELL NO 01","SILO WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2531","8569-R","06-10-1527","HARRIS, PAUL; O. D. ESPINOZA & SONS CO.; SANDOVAL, WADE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SW","14","34.0 N","9.0 E","N","","","","","415181.0","4115434.0","37.181501","-105.955553","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206086", +"2206092","W2533 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2533","8680-R","07-10-1066","SANDOVAL, WADE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","NW","14","34.0 N","9.0 E","N","","","","","414327.0","4116636.0","37.192257","-105.965310","03/15/2013 10:54","https://dwr.state.co.us/Tools/Structures/2206092", +"2206095","W2594 WELL NO 02","#7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2594","8257-R","06-12-1153","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","SW","19","34.0 N","9.0 E","N","","","","","408612.0","4113925.0","37.167281","-106.029362","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206095", +"2206096","W2594 WELL NO 05","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2594","2874-F","06-10-1540","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","SW","20","34.0 N","9.0 E","N","","","","","409574.0","4113956.0","37.167654","-106.018532","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206096", +"2206098","W2594 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2594","4059-F, 8255-R","06-10-1546","COOMBS, NATHAN","RGWCD SD3","10/31/2020","10/31/2025","3","22","CONEJOS","","","SW","SW","SE","15","34.0 N","9.0 E","N","","","","","413638.0","4115463.0","37.181621","-105.972937","12/06/2021 14:40","https://dwr.state.co.us/Tools/Structures/2206098", +"2206107","W2596 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2596","11445-F","04103578","GILLELAND HERITAGE, LLC","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SE","SE","SW","28","34.0 N","9.0 E","N","","","","","411852.0","4112306.0","37.153001","-105.992682","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206107", +"2206108","W2596 WELL NO 02","ANTONITO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","W2596","14149-R","GP11-2051-10","BAGWELL, DOUGLAS","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","SW","NE","5","33.0 N","9.0 E","N","","","","","410274.0","4109803.0","37.130292","-106.010150","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2206108", +"2206375","W3174 WELL NO 01","WHITE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0005, W3174","9540-F, 78008-F","04-01334-12","THOMAS, SHAWN & KRISTIE","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","35","35.0 N","9.0 E","N","","","","","414773.0","4120312.0","37.225429","-105.960706","04/18/2007 13:48","https://dwr.state.co.us/Tools/Structures/2206375", +"2206387","W3245 WELL NO 03","SIMPSON WELL- NO 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3245","15149-R, 15149-R-R, 90225-F","16-11628-04","UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD3","10/31/2018","10/31/2025","3","22","CONEJOS","","","","NW","NW","7","35.0 N","11.0 E","N","","","","","427518.0","4128244.0","37.297999","-105.817829","04/15/2022 07:10","https://dwr.state.co.us/Tools/Structures/2206387", +"2206388","W3245 WELL NO 04","SIMPSON WELL 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3245","15151-R, 15151-R-R","16-10350-06","UNITED STATES BUREAU OF LAND MANAGEMENT; UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD3","10/31/2018","10/31/2025","3","22","CONEJOS","","","SW","NW","NW","7","35.0 N","11.0 E","N","","","","","427468.0","4127922.0","37.295093","-105.818361","12/02/2020 14:22","https://dwr.state.co.us/Tools/Structures/2206388", +"2206419","SANFORD SUPPLY WELL NO. 1","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0013","18751-F","904771","SANFORD, TOWN OF","RGWCD SD3","11/30/1997","10/31/2025","3","22","CONEJOS","","","","SE","NW","20","35.0 N","10.0 E","N","","","","","420063.0","4124240.0","37.261300","-105.901504","12/02/2020 10:48","https://dwr.state.co.us/Tools/Structures/2206419", +"2206421","SANFORD SUPPLY WELL NO. 2","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","04CW0013","18752-F","904770","SANFORD, TOWN OF","RGWCD SD3","11/30/1997","10/31/2025","3","22","CONEJOS","","","","NE","NW","29","35.0 N","10.0 E","N","","","","","420045.0","4123325.0","37.253052","-105.901609","12/02/2020 13:53","https://dwr.state.co.us/Tools/Structures/2206421", +"2206441","PERMIT 54589 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","","54589-F","60493692","MANASSA, ROMEO CEMETARY DISTRICT; NORTON, MATT","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NE","NW","31","34.0 N","10.0 E","N","","","","","418033.0","4111814.0","37.149129","-105.923030","05/22/2007 15:49","https://dwr.state.co.us/Tools/Structures/2206441", +"2206443","PERMIT 16181-F-","LUCERO 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","16181-F","12230554/01250080","LUCERO, JEANETTE; SALAZAR, LEROY","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","NW","SW","35","33.0 N","9.0 E","N","","","","","414624.0","4101225.0","37.053385","-105.960208","10/26/2015 12:38","https://dwr.state.co.us/Tools/Structures/2206443", +"2206453","PERMIT 22892-FR","COURTHOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","","22892-F-R","60615785","CONEJOS COUNTY ; MARTINEZ, DON A.","RGWCD SD3","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","NE","19","33.0 N","9.0 E","N","","","","","409185.0","4105176.0","37.088484","-106.021848","12/02/2020 16:08","https://dwr.state.co.us/Tools/Structures/2206453", +"2206461","21CW3025 WELL NO. 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: PUNCHE ARROYO","00193099","","21CW3025","292150-, 87682-F","20007760","SALAZAR, LEROY","RGWCD SD3","10/31/2021","10/31/2025","3","22","CONEJOS","","","","SW","SW","36","33.0 N","9.0 E","N","","","","","415860.0","4100935.0","37.050883","-105.946277","12/01/2022 11:05","https://dwr.state.co.us/Tools/Structures/2206461", +"2206643","12CW0032 WELL NO 1-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONEJOS RIVER","00192925","","12CW0032","22714-F-R","19017884","LOS CERRITOS CEMETERY ASSOCIATION (GARCIA, GILBERT)","RGWCD SD3","10/31/2020","10/31/2025","3","22","CONEJOS","","","","NE","NE","31","34.0 N","10.0 E","N","","","","","418977.0","4111899.0","37.149977","-105.912410","11/05/2025 14:22","https://dwr.state.co.us/Tools/Structures/2206643", diff --git a/Data/SBD_Data/StructureList_SBD4.csv b/Data/SBD_Data/StructureList_SBD4.csv new file mode 100644 index 0000000..3dc2d9c --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD4.csv @@ -0,0 +1,112 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2505001","W0041 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0041","11065-F","12061259/12061330-100919","COLEMAN, MICHAEL & CHERI","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","22","47.0 N","9.0 E","N","","","","","416482.0","4241044.0","38.313622","-105.955342","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505001", +"2505005","W2399 WELL NO 03","#3, 150 E. GALENA ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","02CW0022, W2399","","70729662","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","12.0 E","N","","","","","438666.0","4205515.0","37.995228","-105.698547","04/05/2021 17:17","https://dwr.state.co.us/Tools/Structures/2505005", +"2505006","W0625 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0625","1342-R, 1342-F-R","10062711/10062809","BERRY, JERRY; KIELER CONSTRUCTION & HOLDINGS COMPANY LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NW","NE","6","44.0 N","10.0 E","N","","","","","420028.0","4217292.2","38.099906","-105.912110","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505006", +"2505013","W3528 WELL NO 01","1-R (EAST)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","21123-F","06-8-2251","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","1","44.0 N","9.0 E","N","","","","","418800.0","4216949.0","38.096705","-105.926075","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505013", +"2505014","W3528 WELL NO 02","D1-E (MIDDLE)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","11182-F-R","06-8-2253","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","1","44.0 N","9.0 E","N","","","","","417991.0","4216957.0","38.096705","-105.935301","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505014", +"2505015","W3528 WELL NO 03","D2-W (WEST)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0040, W3528","21124-F","06-8-2252","OMAN, JACK; ORGANIC SUN ADVISORS II, LLC; SUMMIT VALLEY PARTNERS, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","2","44.0 N","9.0 E","N","","","","","417181.0","4216972.0","38.096766","-105.944540","10/21/1988 00:00","https://dwr.state.co.us/Tools/Structures/2505015", +"2505018","W0886 WELL NO 02","CC18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0886","12952-F, 41625-F","07-10-1163","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","32","45.0 N","10.0 E","N","","","","","422509.0","4218492.0","38.110936","-105.883947","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505018", +"2505019","84CW108 WELL NO 02","CC8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0108","5712-F-R, 5712-R","GT18082972","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","28","45.0 N","10.0 E","N","","","","","422969.0","4219321.0","38.118446","-105.878790","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505019", +"2505020","84CW108 WELL NO 03","CC4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0108","5713-F-R, 5713-F-R","GT18082798","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NW","28","45.0 N","10.0 E","N","","","","","423009.0","4220145.0","38.125875","-105.878423","04/05/2021 17:19","https://dwr.state.co.us/Tools/Structures/2505020", +"2505029","W3202 WELL NO 05R","PW #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","172-R-R","03-8-3968","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","29","45.0 N","10.0 E","N","","","","","421375.0","4220542.0","38.129312","-105.897107","08/19/2013 13:33","https://dwr.state.co.us/Tools/Structures/2505029", +"2505030","W3202 WELL NO 06R","PW #8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","173-R-R","04-8-4170","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NE","29","45.0 N","10.0 E","N","","","","","422147.0","4219730.0","38.122061","-105.888211","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505030", +"2505031","W3202 WELL NO 01A","VDL #14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22441-F","07-8-1281","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","30","45.0 N","10.0 E","N","","","","","420541.1","4220160.6","38.125806","-105.906579","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505031", +"2505032","W3202 WELL NO 02A","PW #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3202","22442-F","13-07665-8","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","29","45.0 N","10.0 E","N","","","","","422175.0","4220536.0","38.129327","-105.887980","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505032", +"2505033","W3202 WELL NO 03A","FREY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22444-F","06-08-2829","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NW","SW","30","45.0 N","10.0 E","N","","","","","419704.3","4219385.6","38.118748","-105.916041","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505033", +"2505034","W3202 WELL NO 06A","VDL #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22446-F","GP13-2395","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","29","45.0 N","10.0 E","N","","","","","422129.0","4218915.2","38.114715","-105.888328","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505034", +"2505035","W-3202 #7A","VDL #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22443-F","GP12-6172","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SW","29","45.0 N","10.0 E","N","","","","","421331.1","4218934.9","38.114827","-105.897432","09/07/2010 15:31","https://dwr.state.co.us/Tools/Structures/2505035", +"2505036","W3202 WELL NO 02AA","PW #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3202","22445-F","04-8-4166","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","29","45.0 N","10.0 E","N","","","","","421349.4","4219738.1","38.122064","-105.897315","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505036", +"2505038","86CW004 WELL NO 01A","FULL CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","86CW0004","24065-F","GT16080866","ABSMEIER, ADRIAN","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NW","25","45.0 N","9.0 E","N","","","","","418261.0","4220245.0","38.126359","-105.932599","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505038", +"2505044","W3370 WELL NO 02A","UNIT 1, PIVOT 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3370","18753-F, 89573-F","GP12-3931-8","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/1990","10/31/2025","3","25","SAGUACHE","","","","SW","SE","8","45.0 N","10.0 E","N","","","","","422266.0","4223779.0","38.158560","-105.887295","09/06/2007 12:28","https://dwr.state.co.us/Tools/Structures/2505044", +"2505045","W3370 WELL NO 02B","UNIT 1, PIVOT 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3370","18754-F, 89572-F","03-8-3751","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/1983","10/31/2025","3","25","SAGUACHE","","","","SW","NE","8","45.0 N","10.0 E","N","","","","","422275.0","4224584.0","38.165815","-105.887281","09/06/2007 12:29","https://dwr.state.co.us/Tools/Structures/2505045", +"2505056","90CW037 WELL NO 01R","VDL #15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","175-R-R","03-8-3966","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","19","45.0 N","10.0 E","N","","","","","420561.6","4220975.1","38.133143","-105.906431","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505056", +"2505058","90CW037 WELL NO 03R","PW #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","177-R-R","05-8-2577","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","20","45.0 N","10.0 E","N","","","","","422201.0","4221337.0","38.136548","-105.887771","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505058", +"2505059","90CW037 WELL NO 04A","PW #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","23182-F, 23182-F-R","05-8-1904","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NW","20","45.0 N","10.0 E","N","","","","","421439.0","4221366.0","38.136743","-105.896468","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505059", +"2505060","90CW037 WELL NO 04R","PW #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","12717-F","05-8-2574","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","NW","20","45.0 N","10.0 E","N","","","","","421416.0","4222159.0","38.143887","-105.896818","11/22/1993 00:00","https://dwr.state.co.us/Tools/Structures/2505060", +"2505061","90CW037 WELL NO 07R","PW #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","90CW0037","174-R-R","05-8-4613","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","20","45.0 N","10.0 E","N","","","","","422213.0","4222146.0","38.143839","-105.887722","05/03/2023 12:13","https://dwr.state.co.us/Tools/Structures/2505061", +"2505063","92CW005 WELL NO 01R","CC23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0005","15147-F-R","07-8-1561","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NE","SW","4","44.0 N","10.0 E","N","","","","","423184.0","4216070.0","38.089168","-105.875988","04/05/2021 17:22","https://dwr.state.co.us/Tools/Structures/2505063", +"2505073","W0007 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0007","14524-F","21-07620-06","ALVIN W. & VICKY M. WEISS JOINT REVOCABLE TRUST (WEISS, VICKY M.); WEISS, ALVIN & VICKY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","30","44.0 N","10.0 E","N","","","","","420390.4","4210005.2","38.034270","-105.907171","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505073", +"2505074","W0015 WELL NO 01","VG RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","6660-R","07-8-1556","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","12","46.0 N","9.0 E","N","","","","","418435.0","4234606.0","38.255788","-105.932262","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505074", +"2505075","W0015 WELL NO 02","VG SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","11809-F","07-8-1555","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","46.0 N","9.0 E","N","","","","","419159.0","4233734.0","38.247995","-105.923889","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505075", +"2505076","W0015 WELL NO 03","VG EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","11808-F, 284405-","07-10-1127","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","17","46.0 N","10.0 E","N","","","","","422246.0","4233358.0","38.244879","-105.888572","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505076", +"2505077","W0015 WELL NO 08","VG TOWN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0015","12302-F","07-8-1558","GOOD, RYLAN L.; RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SE","11","46.0 N","9.0 E","N","","","","","417667.0","4234374.0","38.253627","-105.941012","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505077", +"2505078","W0017 WELL NO 01","TPR #3 & #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0010, W0017","11064-F","09061924/09061979","FREES, DAVID L.; FREES, DELMER E.; FREES, GEORGE A.; FREES, SHIRLEY A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","SE","5","45.0 N","10.0 E","N","","","","","422349.0","4225963.0","38.178248","-105.886587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505078", +"2505079","W0069 WELL NO 01","CC22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0069","5717-F","GT18082961","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","4","44.0 N","10.0 E","N","","","","","423251.0","4217141.0","38.098825","-105.875339","04/05/2021 17:23","https://dwr.state.co.us/Tools/Structures/2505079", +"2505080","18CW3011 WELL NO 02","PUMP, W0069 WELL NO 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, W0069","12438-R, 12438-F-R","","SKOGLUND, KENNETH","RGWCD SD4","10/31/2009","10/31/2018","3","25","SAGUACHE","","","","SW","SW","29","44.0 N","10.0 E","N","","","","","420851.1","4209202.9","38.027083","-105.901829","11/05/2025 13:19","https://dwr.state.co.us/Tools/Structures/2505080", +"2505081","18CW3011 WELL NO 03","W0069 WELL NO 3, WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, W0069","12437-R, 81723-F, 12437-F-R","07-8-1474, 19100716","SKOGLUND EXCAVATING (ECKLUND, KRISTIN); SKOGLUND, KENNETH","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","32","44.0 N","10.0 E","N","","","","","420843.0","4209177.5","38.026857","-105.901918","11/05/2025 13:19","https://dwr.state.co.us/Tools/Structures/2505081", +"2505082","18CW3011 WELL NO 04","EAST, W0069 WELL NO 4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","18CW3011, 21CW0037, W0069","12436-R, 12436-R-R","07-8-1473","SMITH, KELLY J.","RGWCD SD4","10/31/2009","10/31/2024","3","25","SAGUACHE","","","","NW","NE","32","44.0 N","10.0 E","N","","","","","421495.3","4209065.8","38.025904","-105.894478","11/05/2025 13:18","https://dwr.state.co.us/Tools/Structures/2505082", +"2505083","W0074 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0002, W0074","11010-F, 89606-F","07-10-1123","VALLEY VIEW FARMS LLC (MITCHELL, TORI)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","SE","13","45.0 N","9.0 E","N","","","","","419056.0","4222618.0","38.147815","-105.923799","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505083", +"2505084","W0155 WELL NO 01","WELL HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0155","12251-R, 12251-R-R","06201704111","MCDOWELL, STEVE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","43.0 N","11.0 E","N","","","","","437694.0","4204901.0","37.989628","-105.709563","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505084", +"2505085","W0155 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0155","12252-R, 89723-F","1312705","MCDOWELL, STEVE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","12","43.0 N","11.0 E","N","","","","","437532.0","4204913.0","37.989725","-105.711409","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505085", +"2505092","W0190 WELL NO PUMP 01","HOME MEADOW, PUMP NO. 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0190","1745-R-R","07-8-1261","PRIDEMORE, CASEY & CHELSEA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","8","47.0 N","9.0 E","N","","","","","412059.0","4244173.0","38.341395","-106.006318","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505092", +"2505093","W0206 WELL NO 01","AREA420","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3043, W0206","1976-R, 82114-F, 89656-F","20801678","BUNTING, ANN; POTCH, LLC (JUSTICE, WHITNEY)","RGWCD SD4","10/31/2013","10/31/2025","3","25","SAGUACHE","","","","NW","SW","31","44.0 N","10.0 E","N","","","","","418999.0","4208416.0","38.019827","-105.922840","06/10/2013 14:15","https://dwr.state.co.us/Tools/Structures/2505093", +"2505099","W0290 WELL NO PUMP 01","HAY MEADOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0290","4119-F","07-10-1080","BUNKER, ROBERT E. & JUDY K.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","32","45.0 N","10.0 E","N","","","","","421926.9","4218510.9","38.111057","-105.890587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505099", +"2505104","W0440 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0440","12381-R, 83566-F","06-6-1968","JENNIFER RODRIGUEZ & JORGE GOIZUETA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","NE","31","44.0 N","10.0 E","N","","","","","420224.0","4209132.0","38.026388","-105.908965","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505104", +"2505117","W0684 WELL NO 01","NEAL RANCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0684","42708-F","18-04854-08","CURTIS FARMS, LLC (CURTIS, CLIFTON)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","SW","NE","24","44.0 N","10.0 E","N","","","","","428340.5","4211893.1","38.051949","-105.816778","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505117", +"2505141","W0779 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0779","14282-F","11061525/04061501","JAN R. WAYE & PHYLLIS K. WAYE REVOCABLE TRUST","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","SE","NW","7","43.0 N","11.0 E","N","","","","","429205.0","4205964.0","37.998585","-105.806334","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505141", +"2505163","W0975 WELL NO LZY K V 03","EAST LAKE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W0975","11443-F","12062515/12062789-KV3","ALLENBAUGH, JEREMY; KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NE","NW","30","45.0 N","10.0 E","N","","","","","419794.0","4220576.0","38.129479","-105.915148","04/05/2021 17:26","https://dwr.state.co.us/Tools/Structures/2505163", +"2505167","W0984 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0984","19121-R, 89314-F","GP11-1523-10","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","NW","NW","SW","5","44.0 N","10.0 E","N","","","","","420811.0","4216480.0","38.092658","-105.903091","08/19/2014 11:30","https://dwr.state.co.us/Tools/Structures/2505167", +"2505168","W0984 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","21CW3023, W0984","12494-F, 89315-F","GP11-1524-10","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","NE","NW","8","44.0 N","10.0 E","N","","","","","421585.5","4215677.4","38.085489","-105.894165","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505168", +"2505169","W0984 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","21CW3023, W0984","12484-F","GP11-1525-8","BERRY, JERRY; SCHROEDER, DON; SPEARTEX GRAIN CO (DIXON, MARY)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","SW","NW","8","44.0 N","10.0 E","N","","","","","420771.5","4214890.1","38.078326","-105.903359","02/06/2026 15:15","https://dwr.state.co.us/Tools/Structures/2505169", +"2505183","W1149 WELL NO 01","","Inactive structure which physically exist, but no diversion records are maintained (I)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1149","10461-F","","GODFREY, PEGGY","RGWCD SD4","10/31/2021","10/31/2024","3","25","SAGUACHE","","","NW","NE","SW","29","44.0 N","10.0 E","N","","","","","421075.0","4209946.0","38.033798","-105.899359","06/20/2025 15:42","https://dwr.state.co.us/Tools/Structures/2505183", +"2505184","W1149 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1149","10462-F","GP12-6438","REGENOLD, JEFFERY M.","RGWCD SD4","10/31/2013","10/31/2025","3","25","SAGUACHE","","","SW","NE","NE","30","44.0 N","10.0 E","N","","","","","420443.7","4210450.3","38.038285","-105.906605","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505184", +"2505223","W1467 WELL NO 01","N DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1467","14304-F","08-8-4362","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NW","NW","SE","26","47.0 N","9.0 E","N","","","","","417534.0","4239159.0","38.296734","-105.943090","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505223", +"2505258","W1663 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1663","8978-F","09061318/09061379","BLANKENSHIP, ROBERT; MCALISTER, TRAVIS A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","NE","25","45.0 N","9.0 E","N","","","","","418823.0","4220615.0","38.129744","-105.926230","04/03/2000 00:00","https://dwr.state.co.us/Tools/Structures/2505258", +"2505260","W1675 WELL NO 01","SHOUP #20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1675","2760-F, 2760-F-R","14-12346-8","SHOUP, KATHLEEN F.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NE","NE","36","45.0 N","9.0 E","N","","","","","419116.0","4218927.0","38.114559","-105.922696","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505260", +"2505262","W1675 WELL NO 03","FLOOD-VDL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1675","11181-F","07-10-1028","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SW","NW","31","45.0 N","10.0 E","N","","","","","419372.8","4218348.0","38.109364","-105.919699","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505262", +"2505268","W1809 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1809","32600-","05201800153/092017001241","EARTH POSITIVE ENTERPRISES (VESTAL, WILLIAM A.); VESTAL, WILLIAM A.","RGWCD SD4","10/31/2017","10/31/2025","3","25","SAGUACHE","","","","NE","NW","7","43.0 N","10.0 E","N","","","","","419614.0","4205116.0","37.990143","-105.915464","12/26/2023 14:16","https://dwr.state.co.us/Tools/Structures/2505268", +"2505283","W1953 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1953","12490-R","07-10-1139, 17006440, 4002699","DOIEL, DENNIS; FONTENOT, MAX","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NE","NE","5","44.0 N","10.0 E","N","","","","","422440.0","4217284.0","38.100044","-105.884603","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505283", +"2505322","W2025 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2025","11226-F","07-10-1124","FULLENWIDER RANCHES, INC.","RGWCD SD4","10/31/2010","10/31/2024","3","25","SAGUACHE","","","","SE","SE","16","47.0 N","9.0 E","N","","","","","414500.0","4241724.0","38.319563","-105.978092","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505322", +"2505338","W2057 WELL NO ART 01","HIGH MEADOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW3012, W2057","","GP09-2109-3","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2010","10/31/2025","3","25","SAGUACHE","","","SE","NW","SE","4","43.0 N","10.0 E","N","","","","","423107.0","4206021.0","37.998602","-105.875786","04/05/2021 17:33","https://dwr.state.co.us/Tools/Structures/2505338", +"2505357","W2057 WELL NO IRR 01","WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW3012, W2057","13284-R, 296522-, 80600-F","24-05781-08, 8413366","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","5","43.0 N","10.0 E","N","","","","","421777.0","4206638.0","38.004048","-105.891000","04/05/2021 17:34","https://dwr.state.co.us/Tools/Structures/2505357", +"2505358","W2057 WELL NO IRR 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2057","13285-R","GP10-0442-10","CHOKUREI RANCH LLC; GROTE, KYLE","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","3","43.0 N","10.0 E","N","","","","","424157.0","4207013.0","38.007630","-105.863933","04/05/2021 17:34","https://dwr.state.co.us/Tools/Structures/2505358", +"2505374","W2151 WELL NO 03","FIRE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2151","22975-F, 22975-F-R","222243964, GP13-2389","MOFFAT CONSOLIDATED SCHOOL","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","NW","SE","6","43.0 N","10.0 E","N","","","","","420060.0","4206023.0","37.998356","-105.910486","04/05/2021 17:38","https://dwr.state.co.us/Tools/Structures/2505374", +"2505375","W2152 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2152","11058-F","07-8-1475","ARROWPOINT CATTLE COMPANY LLC (ROBERTS, NANCY)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SE","19","46.0 N","10.0 E","N","","","","","420816.0","4231058.0","38.224028","-105.904656","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505375", +"2505385","W2153 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NE","SE","6","43.0 N","10.0 E","N","","","","","420394.3","4206141.0","37.999449","-105.906696","02/06/2026 15:16","https://dwr.state.co.us/Tools/Structures/2505385", +"2505386","W2153 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","SW","SE","6","43.0 N","10.0 E","N","","","","","420009.0","4205697.0","37.995414","-105.911031","02/06/2026 15:16","https://dwr.state.co.us/Tools/Structures/2505386", +"2505388","W2153 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3043, W2153","82534-F, 89655-F","21-02651-03, 212101340","BUNTING, ANN; POTCH, LLC (JUSTICE, WHITNEY); TOWN OF MOFFAT","RGWCD SD4","10/31/2020","10/31/2025","3","25","SAGUACHE","","","","SE","NE","6","43.0 N","10.0 E","N","","","","","420102.0","4206252.0","38.000424","-105.910034","12/26/2023 14:17","https://dwr.state.co.us/Tools/Structures/2505388", +"2505389","W2153 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NW","NW","5","43.0 N","10.0 E","N","250","W","2635","N","420618.3","4206784.8","38.005272","-105.904216","02/06/2026 15:17","https://dwr.state.co.us/Tools/Structures/2505389", +"2505390","W2153 WELL NO 07","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2153","","456123","TOWN OF MOFFAT","RGWCD SD4","10/31/2023","10/31/2025","3","25","SAGUACHE","","","","NW","SW","5","43.0 N","10.0 E","N","","","","","420520.0","4205870.0","37.997018","-105.905231","02/06/2026 15:18","https://dwr.state.co.us/Tools/Structures/2505390", +"2505400","W2213 WELL NO 01","CC20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2213","1725-R","GT18082986","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","NE","34","45.0 N","10.0 E","N","","","","","425706.0","4218035.0","38.107087","-105.847435","04/05/2021 18:00","https://dwr.state.co.us/Tools/Structures/2505400", +"2505403","W2219 WELL NO BACA MOTEL WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W2219","15909-F","08-8-1352","BACA GRANDE WATER AND SANITATION DISTRICT; UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SE","SW","9","43.0 N","11.0 E","N","","","","","432414.0","4204940.0","37.989601","-105.769691","04/05/2021 18:01","https://dwr.state.co.us/Tools/Structures/2505403", +"2505413","W2219 WELL NO GRANT 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2219","20367-R, 119-WCB","07-6-1485","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","8","43.0 N","10.0 E","N","","","","","420793.0","4204446.0","37.984209","-105.901965","04/05/2021 18:02","https://dwr.state.co.us/Tools/Structures/2505413", +"2505439","W2365 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004, W2365","10244-F, 89856-F","09-8-1362, 8947675","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","NE","SW","NW","7","45.0 N","10.0 E","N","","","","","419792.0","4225017.0","38.169499","-105.915671","06/15/2009 10:50","https://dwr.state.co.us/Tools/Structures/2505439", +"2505441","W2365 WELL NO 03","UNIT 1, PIVOT 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004, W2365","12497-F-R, 89858-F","22-07546-08","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","SE","SW","7","45.0 N","10.0 E","N","","","","","420197.0","4224190.0","38.162083","-105.910955","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2505441", +"2505444","W2399 WELL NO 01","238 N. COTTONWOOD ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","96CW0033, W2399","59487-F","22206620","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","SW","NW","7","43.0 N","12.0 E","N","","","","","438551.0","4205674.0","37.996653","-105.699870","01/03/2024 11:20","https://dwr.state.co.us/Tools/Structures/2505444", +"2505464","W3410 WELL NO 01R","CC13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3410","4423-AD, 3167-F, 3167-F-R","GT18082777","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","33","45.0 N","10.0 E","N","","","","","422944.0","4218501.0","38.111055","-105.878987","04/05/2021 18:09","https://dwr.state.co.us/Tools/Structures/2505464", +"2505465","W3410 WELL NO 02R","CC5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","W3410","20142-F, 20142-F-R","07-8-1498","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","28","45.0 N","10.0 E","N","","","","","423794.0","4220099.0","38.125527","-105.869462","04/05/2021 18:09","https://dwr.state.co.us/Tools/Structures/2505465", +"2505472","W1675 WELL NO 08","SHOUP #19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","94CW0012","42934-F","12212668/10062830","SHOUP, KATHLEEN F.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SE","NW","NE","36","45.0 N","9.0 E","N","","","","","418775.0","4218601.0","38.111590","-105.926548","06/27/2008 14:36","https://dwr.state.co.us/Tools/Structures/2505472", +"2505473","W3489 WELL NO 01","TPR#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","10CW0010, W3489","20220-F","05060239/05060255","FREES, DAVID L.; FREES, DELMER E.; FREES, GEORGE A.; FREES, SHIRLEY A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","5","45.0 N","10.0 E","N","","","","","422294.0","4225413.0","38.173287","-105.887154","03/21/1996 00:00","https://dwr.state.co.us/Tools/Structures/2505473", +"2505489","99CW023 WELL NO 02A","HALF CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","99CW0023","45643-F","05060769/05060804","BLANKENSHIP, ROBERT; MCALISTER, TRAVIS A.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NE","25","45.0 N","9.0 E","N","","","","","418658.0","4220229.0","38.126251","-105.928068","01/17/2008 09:24","https://dwr.state.co.us/Tools/Structures/2505489", +"2505495","98CW014 WELL NO 1AA","WILHELMINA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","98CW0014","45644-F, 45644-F-R","22-03024","BERRY, JERRY; VAN DER LAAN, ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","SW","NE","SW","25","45.0 N","9.0 E","N","","","","","418231.0","4219453.0","38.119219","-105.932851","01/18/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505495", +"2505496","98CW005 WELL NO 3A","VDL #11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0005","41170-F, 45010-F","07-8-1179","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SE","SW","31","45.0 N","10.0 E","N","","","","","419748.0","4217740.0","38.103918","-105.915354","07/05/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505496", +"2505497","98CW005 WELL NO 1AA","VDL #12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0005","44615-F","07-8-1173","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","31","45.0 N","10.0 E","N","","","","","419705.6","4218578.2","38.111466","-105.915927","07/05/2001 00:00","https://dwr.state.co.us/Tools/Structures/2505497", +"2505499","PERMIT 41373 F","CC19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","41373-F","GT20084239","BERRY, JERRY; KIANA HOLDINGS II, LLC","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SW","34","45.0 N","10.0 E","N","","","","","424559.0","4217672.0","38.103720","-105.860479","04/05/2021 18:11","https://dwr.state.co.us/Tools/Structures/2505499", +"2505500","PERMIT 24668-F-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24668-F","11061525/04061501","JAN R. WAYE & PHYLLIS K. WAYE REVOCABLE TRUST","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","11.0 E","N","","","","","429008.0","4205993.0","37.998831","-105.808580","04/05/2021 18:14","https://dwr.state.co.us/Tools/Structures/2505500", +"2505501","PERMIT 20365-R","GRANT WELL 4 / C-72","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20365-R","07-6-1675","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","5","1.0 N","1.0 W","B","","","","","430478.0","4203847.0","37.979605","-105.791631","04/05/2021 18:12","https://dwr.state.co.us/Tools/Structures/2505501", +"2505502","PERMIT 20366-R","GRANT WELL 6 / C-8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20366-R","07-6-1484","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","8","1.0 N","1.0 W","B","","","","","429274.0","4201981.0","37.962695","-105.805156","04/05/2021 18:13","https://dwr.state.co.us/Tools/Structures/2505502", +"2505504","2004CW007 WELL 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","6523-R-R","09061937/12204365","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","SE","4","45.0 N","10.0 E","N","","","","","423931.0","4225577.0","38.174905","-105.868485","06/03/2008 15:27","https://dwr.state.co.us/Tools/Structures/2505504", +"2505505","2004CW07 WELL 2R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","19437-F-R, 19437-F-R","10062747/10062849","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","10","45.0 N","10.0 E","N","","","","","424664.0","4225008.0","38.169839","-105.860057","06/03/2008 15:27","https://dwr.state.co.us/Tools/Structures/2505505", +"2505506","2004CW07 WELL 2RA","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","04CW0007","24779-F, 24779-F-R, 275310-","10062747/10062849","RIDGELY, C. LEE & JUDY","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","NE","9","45.0 N","10.0 E","N","","","","","424224.0","4225171.0","38.171271","-105.865097","02/17/2009 16:25","https://dwr.state.co.us/Tools/Structures/2505506", +"2505507","2010CW33 WELL NO 2-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","10CW0033","24403-F-R, 88991-F","22-03165-08","GOOD, RYLAN L.; QUINTANA RANCH, INC. (QUINTANA, ROBERT); QUINTANA, VICTORIA","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","35","47.0 N","9.0 E","N","","","","","416885.0","4237652.0","38.283094","-105.950334","08/30/2013 10:48","https://dwr.state.co.us/Tools/Structures/2505507", +"2505508","06CW08 WELL NO 2RA","2RA, 344 S. ALDER ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","06CW0008, 09CW0028","65046-F","232704813","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","SW","7","43.0 N","12.0 E","N","","","","","438626.0","4205261.0","37.992936","-105.698981","05/15/2025 15:11","https://dwr.state.co.us/Tools/Structures/2505508", +"2505510","2006CW008 WELL NO 2R","155 N. ALDER ST.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: NORTH CRESTONE CREEK","00192263","","06CW0008, 09CW0028","62140-F","232704814","BLACKWELL, ARIELLE; CRESTONE, TOWN OF","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","SW","NW","7","43.0 N","12.0 E","N","","","","","438614.0","4205576.0","37.995774","-105.699144","04/05/2021 18:16","https://dwr.state.co.us/Tools/Structures/2505510", +"2505511","PERMIT 19106-S","COLE WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","","19106-S","08-12-1156","MATTINGLY, JOHN C, JUDITH & BRIEN H.","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NE","SW","7","44.0 N","10.0 E","N","","","","","419641.0","4214877.0","38.078109","-105.916252","05/09/2024 14:20","https://dwr.state.co.us/Tools/Structures/2505511", +"2505512","22CW3004 WELL NO 3-A","UNIT 1, PIVOT 3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAN LUIS CREEK","00192389","","22CW3004","23955-F, 89859-F","25-02179-08","MITCHELL VALLEY FARM LLC (MITCHELL, AMANDA)","RGWCD SD4","10/31/2009","10/31/2025","3","25","SAGUACHE","","","","NW","NW","18","45.0 N","10.0 E","N","","","","","419811.0","4223437.0","38.155263","-105.915276","03/26/2024 14:14","https://dwr.state.co.us/Tools/Structures/2505512", +"2505537","PERMIT NO. 19106-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","19106-R","GP10-1438-8","MATTINGLY, JOHN C, JUDITH & BRIEN H.","RGWCD SD4","10/31/2010","10/31/2025","3","25","SAGUACHE","","","","NE","SW","6","44.0 N","10.0 E","N","","","","","419975.0","4216129.0","38.089421","-105.912584","05/09/2024 14:23","https://dwr.state.co.us/Tools/Structures/2505537", +"2505977","05CW06 OASIS COLD WELL","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0006","24777-F, 64332-F, 89124-F","5370400","BLUMENHEIN, RICHARD; JOYFUL JOURNEY HOT SPRINGS (BOUDREAUX, THEO); MINERAL HOT SPRINGS (BLUMENHEIN, R.A.); OASIS 2000 CORP (BLUMENHEIN, ELAINE)","RGWCD SD4","10/31/2011","10/31/2025","3","25","SAGUACHE","","","","SE","SE","1","45.0 N","9.0 E","N","","","","","419368.0","4225638.0","38.175058","-105.920581","04/05/2021 18:19","https://dwr.state.co.us/Tools/Structures/2505977", +"2605188","W0745 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW3007, W0745","90180-F","25003839","ENGLERT, THAD & SUE ELLEN","RGWCD SD4","10/31/2025","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","1","43.0 N","9.0 E","N","","","","","417403.0","4207464.0","38.011104","-105.940911","02/06/2026 15:23","https://dwr.state.co.us/Tools/Structures/2605188", +"2605224","W0802 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","16CW3017, W0802","10197-R, 83553-F","06-8-1730, 8923016","COUNTY ROAD Z, LLC (OMAN, BRADY D.); OMAN, JACK","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","1","44.0 N","9.0 E","N","","","","","417637.0","4216518.0","38.092716","-105.939287","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605224", +"2605285","W0975 WELL NO LZY K V 01","NORTH WELL SOUTH/NORTH TANK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0975","4975-F","6170375, 6170376","ALLENBAUGH, JEREMY; KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","24","45.0 N","9.0 E","N","","","","","418571.0","4221441.0","38.137165","-105.929199","04/05/2021 18:19","https://dwr.state.co.us/Tools/Structures/2605285", +"2605286","W0975 WELL NO LZY K V 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0975","3971-F","","KV HOMEOWNER ASSOCIATION","RGWCD SD4","10/31/2009","10/31/2020","3","26","SAGUACHE","","","NW","NW","NW","26","45.0 N","9.0 E","N","","","","","416245.0","4220609.0","38.129454","-105.955640","04/05/2021 18:21","https://dwr.state.co.us/Tools/Structures/2605286", +"2605435","W1607 WELL NO 15","POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","848-R, 83328-F","20007758, 23-00712-08","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","19","44.0 N","10.0 E","N","","","","","419107.4","4212458.2","38.056262","-105.922066","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605435", +"2605438","W1607 WELL NO 20","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","","9039038","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2019","10/31/2025","3","26","SAGUACHE","","","","NW","NW","19","44.0 N","10.0 E","N","","","","","419089.0","4212448.0","38.056170","-105.922270","12/26/2023 14:19","https://dwr.state.co.us/Tools/Structures/2605438", +"2605439","W1607 WELL NO 21","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1607","","9019690","GREEN PARADOX (MAKA, MATTHEW); PAUNESCU, MARIA","RGWCD SD4","10/31/2019","10/31/2025","3","26","SAGUACHE","","","","NW","NW","19","44.0 N","10.0 E","N","","","","","419090.0","4212456.0","38.056242","-105.922259","02/06/2026 15:50","https://dwr.state.co.us/Tools/Structures/2605439", +"2605880","W2574 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W2574","20613-R","21-04361-08","BENNETT, DAN","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","3","44.0 N","9.0 E","N","","","","","415779.0","4215753.0","38.085651","-105.960383","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605880", +"2605886","W2578 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W2578","15205-F","06-10-1493","SILVA, CARLOS","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","36","44.0 N","9.0 E","N","","","","","417430.0","4209277.0","38.027444","-105.940812","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605886", +"2605892","W2578 WELL NO 10","WELL IN NW BRUSH PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2578","15560-F","06-10-1494","SILVA, CARLOS; SILVA, VICTORIA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","23","44.0 N","9.0 E","N","","","","","416670.0","4212491.0","38.056338","-105.949844","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605892", +"2605894","W2578 WELL NO 13","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2578","9288-F, 81610-F","18-11229","WEBSTER, MATTHEW","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","25","44.0 N","9.0 E","N","","","","","418217.0","4210868.0","38.041853","-105.932028","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605894", +"2605947","W3375 WELL NO. 1","VDL #17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3375","16971-F-R","10062781/10062825","BERRY, JERRY; TEMPLE, D. SHANE & ELIZABETH A.; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","12","44.0 N","9.0 E","N","","","","","417919.0","4214510.0","38.074647","-105.935841","11/05/2011 21:32","https://dwr.state.co.us/Tools/Structures/2605947", +"2605948","W3375 WELL NO 02","VDL #16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3375","16972-F","10062775/10062814","BERRY, JERRY; VAN DER LAAN, PIETER & ANITA","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SE","12","44.0 N","9.0 E","N","","","","","418707.0","4214521.0","38.074817","-105.926859","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605948", +"2605969","PERMIT 34714 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","34714-F","20-03444-08","VESTAL, WILLIAM A.; WERNER, JACQUELIN VESTAL & WILLIAM A.X. VESTAL","RGWCD SD4","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","7","43.0 N","10.0 E","N","","","","","419670.0","4205113.0","37.990121","-105.914826","09/18/2007 10:06","https://dwr.state.co.us/Tools/Structures/2605969", +"2606015","16CW3007 WELL NO. W745R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","16CW3007","252768-, 90181-F","25003817","ENGLERT LIVING TRUST (ENGLERT, MARK)","RGWCD SD4","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NW","NW","1","43.0 N","9.0 E","N","","","","","417457.0","4207604.0","38.012370","-105.940312","02/06/2026 15:56","https://dwr.state.co.us/Tools/Structures/2606015", diff --git a/Data/SBD_Data/StructureList_SBD5.csv b/Data/SBD_Data/StructureList_SBD5.csv new file mode 100644 index 0000000..15bc88d --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD5.csv @@ -0,0 +1,156 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2605001","W1037 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3001, W1037","12859-R, 82958-F, 89848-F","19-03525-08","MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2014","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","3","43.0 N","8.0 E","N","","","","","405341.0","4207897.0","38.013826","-106.078351","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605001", +"2605004","W1745 WELL NO 03","WAKEFIELD #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1745","7083-R","09062735/10060111","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NE","19","44.0 N","9.0 E","N","","","","","410248.0","4212275.0","38.053777","-106.023008","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605004", +"2605005","W1902 WELL NO HENSON 02","LIGHTENING TREE #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20360-R","16-08036-10","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","19","44.0 N","9.0 E","N","","","","","411003.0","4211461.0","38.046517","-106.014302","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605005", +"2605006","W1902 WELL NO HENSON 04","3RD PASTURE #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20219-R","10062735/10062841","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","20","44.0 N","9.0 E","N","","","","","411329.0","4212232.0","38.053496","-106.010683","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605006", +"2605012","W3288 WEEKS WELL NO 01","PIVOT C","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21584-F","23-03636-80","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SE","SE","21","44.0 N","9.0 E","N","","","","","414142.0","4211004.0","38.042702","-105.978477","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605012", +"2605013","W3288 WEEKS WELL NO 02","PIVOT B","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21585-F","09062738/10060106","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","SE","21","44.0 N","9.0 E","N","","","","","413758.0","4211798.0","38.049820","-105.982949","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605013", +"2605014","W3288 WEEKS WELL NO 03","PIVOT A","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0049, W3288","21586-F","072019003985/01201350","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NW","21","44.0 N","9.0 E","N","","","","","412984.0","4211834.0","38.050071","-105.991774","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605014", +"2605015","W0082 WELL NO 02","26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0082","10305-F, 10305-F-R","10063550/12230549","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","29","44.0 N","8.0 E","N","","","","","402991.0","4210120.0","38.033609","-106.105418","08/06/2018 12:36","https://dwr.state.co.us/Tools/Structures/2605015", +"2605016","81CW135 WELL NO D 02A","26","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0135","24067-F, 24067-F-R, 24067-F-R","10063550/12230549","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","28","44.0 N","8.0 E","N","","","","","403385.0","4210052.0","38.033039","-106.100920","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605016", +"2605018","81CW135 WELL NO D 05A","25","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0135","24068-F","10063564/10063682","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","28","44.0 N","8.0 E","N","","","","","403407.0","4210850.0","38.040232","-106.100777","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605018", +"2605019","W2276 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W2276","13925-R","03090271","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","SW","27","44.0 N","8.0 E","N","","","","","404565.0","4210030.0","38.032966","-106.087473","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605019", +"2605020","81CW135 WELL NO D 07A","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","81CW0135","24066-F","06-8-4826","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","34","44.0 N","8.0 E","N","","","","","404924.0","4209233.0","38.025822","-106.083277","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605020", +"2605022","81CW168 WELL NO 04A","27","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0168","25226-F, 25226-F-R","10063588/10063673","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","33","44.0 N","8.0 E","N","","","","","403350.0","4209250.0","38.025808","-106.101210","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605022", +"2605023","81CW168 WELL NO 04AA","33","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","81CW0168","25225-F","09212316/09212242","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NE","33","44.0 N","8.0 E","N","","","","","404124.0","4209251.0","38.025899","-106.092393","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605023", +"2605032","82CW075 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0075","900-R-R","12062610/12062696","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","19","44.0 N","8.0 E","N","","","","","400415.0","4212819.0","38.057651","-106.135141","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2605032", +"2605035","W2465 WELL NO 01","BIG ARGY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","88CW0018, W2465","10637-F","00-8-2105N","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","21","43.0 N","8.0 E","N","","","","","403678.0","4202557.0","37.965531","-106.096575","03/15/2021 13:44","https://dwr.state.co.us/Tools/Structures/2605035", +"2605040","W1902 WELL NO S FARM 07","22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19513-W","24-05619-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2016","10/31/2025","3","26","SAGUACHE","","","","NW","SW","29","44.0 N","8.0 E","N","","","","","401805.0","4210439.0","38.036356","-106.118974","01/27/2026 14:15","https://dwr.state.co.us/Tools/Structures/2605040", +"2605043","W1902 WELL NO S FARM 15","9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20162-R","072019003980/12204375","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NE","NW","32","44.0 N","8.0 E","N","","","","","401799.0","4209398.0","38.026975","-106.118899","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605043", +"2605044","W1902 WELL NO S FARM 25","10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","6052-R","10063571/072019003994","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","SW","32","44.0 N","8.0 E","N","","","","","401785.0","4208820.0","38.021765","-106.118979","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605044", +"2605045","W1902 WELL NO S FARM 01A","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","19057-F","12062518/12062784","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","19","44.0 N","8.0 E","N","","","","","401042.0","4211715.0","38.047771","-106.127843","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605045", +"2605046","W1902 WELL NO S FARM 02A","13","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19063-F, 19063--R","10063557/10063736","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","29","44.0 N","8.0 E","N","","","","","401820.0","4210881.0","38.040341","-106.118863","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605046", +"2605047","W1902 WELL NO S FARM 06A","14","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19061-F","20-03865-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","29","44.0 N","8.0 E","N","","","","","401809.0","4210074.0","38.033068","-106.118878","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605047", +"2605048","W1902 WELL NO S FARM 07A","20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19060-F, 53495-F","10063569/10063678","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SE","29","44.0 N","8.0 E","N","","","","","402582.0","4210052.0","38.032953","-106.110068","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605048", +"2605049","W1902 WELL NO S FARM 08A","19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","4498-AD, 19062-F","072014000388/062017001242","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","29","44.0 N","8.0 E","N","","","","","402614.0","4210859.0","38.040228","-106.109813","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605049", +"2605050","W1902 WELL NO S FARM 10A","7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1902","19064-F","07060375/092017001244","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NE","30","44.0 N","8.0 E","N","","","","","401029.0","4210899.0","38.040417","-106.127878","07/06/2017 14:40","https://dwr.state.co.us/Tools/Structures/2605050", +"2605052","W1902 WELL NO S FARM 25A","16","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","19058-F, 19058-F-R, 19058--R","10063540/10063717","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","32","44.0 N","8.0 E","N","","","","","402163.0","4208467.0","38.018625","-106.114625","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605052", +"2605053","W0092 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0092","1899-R","","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2019","3","26","SAGUACHE","","","","SE","SE","24","44.0 N","8.0 E","N","","","","","409403.0","4211450.0","38.046259","-106.032533","05/03/2023 12:13","https://dwr.state.co.us/Tools/Structures/2605053", +"2605054","W3679 WELL NO 01A","JOHN L. WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W3679","22076-F","12212660/12230545","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NE","24","44.0 N","8.0 E","N","","","","","409425.0","4212197.0","38.052992","-106.032377","11/12/1989 00:00","https://dwr.state.co.us/Tools/Structures/2605054", +"2605055","W0002 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W0002","4401-F","08223647/12212625","BROKEN WINDMILL RANCH LLC; WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","15","44.0 N","8.0 E","N","","","","","404677.0","4213657.0","38.065661","-106.086680","01/31/1991 00:00","https://dwr.state.co.us/Tools/Structures/2605055", +"2605056","80CW046 WELL NO 30","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0046","18449-F","062015000935/12062757","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NE","NW","6","43.0 N","8.0 E","N","","","","","400376.0","4207768.0","38.012131","-106.134883","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605056", +"2605057","80CW046 WELL NO 31","4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","80CW0046","18450-F","072017001411/05063044","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","31","44.0 N","8.0 E","N","","","","","400207.0","4209308.0","38.025990","-106.137022","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605057", +"2605059","83CW0082 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0082","","20008642","CARLSON, STEVEN & TREVA","RGWCD SD5","10/31/2021","10/31/2025","3","26","SAGUACHE","","","","SE","NW","36","43.0 N","7.0 E","N","","","","","398568.0","4198676.0","37.930002","-106.154192","03/05/2026 10:41","https://dwr.state.co.us/Tools/Structures/2605059", +"2605061","W0030 WELL NO 01","JOHN L. WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0030","15262-R","","BAKER, CHANCE; JOHN L. WERNER IRREVOCABLE TRUST (BAKER, CHANCE)","RGWCD SD5","10/31/2009","10/31/2020","3","26","SAGUACHE","","","","SE","NW","24","44.0 N","8.0 E","N","","","","","408425.0","4212314.0","38.053946","-106.043788","10/26/2023 13:23","https://dwr.state.co.us/Tools/Structures/2605061", +"2605062","W0082 WELL NO 01","24, 29","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0082","4524-F, 4524-F-R","10063584/10063680","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","28","44.0 N","8.0 E","N","","","","","403051.0","4211238.0","38.043690","-106.104886","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605062", +"2605063","W0082 WELL NO 03","30, 31","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0082","4815-F, 4815-F-R","10063577/10063668","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","28","44.0 N","8.0 E","N","","","","","403784.0","4210419.0","38.036388","-106.096423","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605063", +"2605101","W0094 PUMP WELL NO 05","WERNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","904-R, 14375-F","06-10-1287","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","10","44.0 N","8.0 E","N","","","","","406323.0","4214689.0","38.075133","-106.068054","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605101", +"2605102","W0094 PUMP WELL NO 06","WEST ULLERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","898-R","06-10-1404","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NE","27","44.0 N","8.0 E","N","","","","","406195.0","4211089.0","38.042679","-106.069041","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605102", +"2605103","W0094 PUMP WELL NO 07","SO. ULLERY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0094","897-R","25-02155-10","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NE","SE","26","44.0 N","8.0 E","N","","","","","407389.0","4210119.0","38.034061","-106.055311","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605103", +"2605120","W0207 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0207","10711-F","06-10-1288","COLLINS, WARREN W. & SARAH L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","12","43.0 N","7.0 E","N","","","","","399092.0","4205700.0","37.993354","-106.149216","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605120", +"2605131","W0533 WELL NO ART 01","UPPER 9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","21028-R","20-03592-10","SUTHERLAND, LYNN","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","9","43.0 N","9.0 E","N","","","","","413284.0","4205526.0","37.993255","-105.987591","09/17/2007 15:01","https://dwr.state.co.us/Tools/Structures/2605131", +"2605132","W0533 WELL NO ART 02","UPPER 10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","10945-R","07-10-1088","SUTHERLAND, LYNN","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","10","43.0 N","9.0 E","N","","","","","414495.0","4205519.0","37.993307","-105.973801","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605132", +"2605159","W0533 WELL NO PUMP 01","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0533","19694-R, 89126-F","08061978/08062003","SAN JUAN RANCH LLC; WHITTEN, GEORGE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","1","43.0 N","8.0 E","N","","","","","407747.0","4207527.0","38.010740","-106.050898","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605159", +"2605167","W0711 WELL NO 01","SLAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0047, W0711","1691-R, 1691-R-R","10242151/1223054","HILL LAND & CATTLE; HILL, CORY & AUBREY; HILL, GARY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SE","9","44.0 N","8.0 E","N","","","","","403907.0","4214489.0","38.073077","-106.095569","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605167", +"2605187","W0745 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0745","13165-R, 189-WCB","07-8-1228","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","NW","11","43.0 N","9.0 E","N","","","","","416041.0","4205456.0","37.992883","-105.956189","09/17/2007 15:01","https://dwr.state.co.us/Tools/Structures/2605187", +"2605192","W0745 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0745","","25000112","ENGLERT, THAD & SUE ELLEN","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NE","SE","2","43.0 N","9.0 E","N","","","","","417076.0","4206083.0","37.998629","-105.944475","02/06/2026 15:24","https://dwr.state.co.us/Tools/Structures/2605192", +"2605197","W0745 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0745","","25000211","ENGLERT LIVING TRUST (ENGLERT, MARK)","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SE","SE","2","43.0 N","9.0 E","N","","","","","417048.0","4205741.0","37.995544","-105.944755","02/06/2026 15:24","https://dwr.state.co.us/Tools/Structures/2605197", +"2605249","W0826 WELL NO 01","HILL & ALLEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047, W0826","13196-F","10063593/10063692","GREEN THINGS LLC (ROONEY, SEAN); HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","5","44.0 N","8.0 E","N","","","","","401928.0","4216362.0","38.089742","-106.118384","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605249", +"2605250","W0827 WELL NO 01","COW CAMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0827","5487-F","21-02806-10","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NW","4","43.0 N","9.0 E","N","","","","","412961.0","4207794.0","38.013662","-105.991545","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605250", +"2605262","W0828 WELL NO 01","RED BARN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047, W0828","6538-R","12062505/12062778","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","5","44.0 N","8.0 E","N","","","","","402926.0","4216112.0","38.087597","-106.106972","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605262", +"2605267","W0919 WELL NO 01","W-919 WELL #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","3258-F","06-6-1701, 26014876","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SE","33","43.0 N","8.0 E","N","","","","","403520.0","4197785.0","37.922512","-106.097734","03/15/2021 13:52","https://dwr.state.co.us/Tools/Structures/2605267", +"2605269","W0919 WELL NO 03","W-919 WELL#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16403-R","1367020","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","SW","SW","NE","33","43.0 N","8.0 E","N","","","","","403485.0","4198589.0","37.929753","-106.098240","12/26/2023 14:18","https://dwr.state.co.us/Tools/Structures/2605269", +"2605270","W0919 WELL NO 04","W-919 WELL #4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16402-R","1450724","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","","NE","NW","33","43.0 N","8.0 E","N","","","","","403442.0","4199287.0","37.936039","-106.098823","03/15/2021 13:54","https://dwr.state.co.us/Tools/Structures/2605270", +"2605271","W0919 WELL NO 05","W-919 WELL #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","16404-R","1479294","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","33","43.0 N","8.0 E","N","","","","","403449.0","4199358.0","37.936679","-106.098753","03/15/2021 13:56","https://dwr.state.co.us/Tools/Structures/2605271", +"2605274","W0919 WELL NO 08","W-919 WELL#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0919","","20013706","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2010","10/31/2025","3","26","SAGUACHE","","","SW","NW","NE","33","43.0 N","8.0 E","N","","","","","403443.0","4199121.0","37.934543","-106.098789","02/06/2026 15:25","https://dwr.state.co.us/Tools/Structures/2605274", +"2605288","W1008 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1008","16084-R","07-4-1023","ABEYTA, ALEX A. & LAURA L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","SE","SW","6","44.0 N","8.0 E","N","","","","","400550.0","4216363.0","38.089601","-106.134096","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605288", +"2605300","W1022 WELL NO 01","CAT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1022","15509-F","06-8-3309, 19830461","ANDERSON, CARNA; FIELD OF GREEN LLC (ANDERSON, CARNA)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","9","43.0 N","8.0 E","N","","","","","403511.0","4205829.0","37.994998","-106.098916","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605300", +"2605301","W1022 WELL NO 02","QT #4 #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1022","509-R","7-8-1138E","HOLLENBECK, MICHAEL E. & RONDA J.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NW","9","43.0 N","8.0 E","N","","","","","403513.0","4205823.0","37.994944","-106.098892","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605301", +"2605316","W1037 WELL NO 01","SOD FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1037","12858-R, 12858-R-R","","SCANGA, EDWARD T. & KELLY J.","RGWCD SD5","10/31/2019","10/31/2023","3","26","SAGUACHE","","","","NW","NW","5","44.0 N","7.0 E","N","","","","","392226.0","4217937.0","38.102829","-106.229237","02/13/2026 11:04","https://dwr.state.co.us/Tools/Structures/2605316", +"2605379","W1277 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1277","","17-13696-04","BILGER, RICK A. & ADELITA C.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","36","43.0 N","7.0 E","N","","","","","398563.0","4199190.0","37.934633","-106.154321","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605379", +"2605382","W1277 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1277","","21-05953-04","CARLSON, STEVEN & TREVA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NW","36","43.0 N","7.0 E","N","","","","","398566.0","4198682.0","37.930056","-106.154215","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605382", +"2605386","W1277 WELL NO 09","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1277","16215-R","242451739","KELLING, TERRI D.","RGWCD SD5","10/31/2022","10/31/2025","3","26","SAGUACHE","","","SE","SE","SE","25","43.0 N","7.0 E","N","","","","","399184.0","4199504.0","37.937532","-106.147300","05/09/2024 14:30","https://dwr.state.co.us/Tools/Structures/2605386", +"2605419","W1337 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1337","14469-F, 81143-F","06-10-1535","COLEMAN, AMY L.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","34","44.0 N","8.0 E","N","","","","","404509.0","4208828.0","38.022128","-106.087951","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605419", +"2605443","W1632 WELL NO 01","BIG SHOP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","4018-F","23-04164-10","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","20","43.0 N","8.0 E","N","","","","","401312.0","4202616.0","37.965808","-106.123514","03/15/2021 14:02","https://dwr.state.co.us/Tools/Structures/2605443", +"2605444","W1632 WELL NO 02","VIGIL #2 W-1632","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","4019-F","24-07192-08","FRONTIER TROUT RANCH LLC (KRANTZ, KERMIT)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","SW","36","43.0 N","7.0 E","N","","","","","398055.0","4198009.0","37.923934","-106.159934","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605444", +"2605445","W1632 WELL NO 03","WELL #3 W1632","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","25312-F-R","82-6-178","ABEYTA, FRANK AND JODY","RGWCD SD5","10/31/2009","10/31/2024","3","26","SAGUACHE","","","","SE","SW","36","43.0 N","7.0 E","N","","","","","398532.0","4198028.0","37.924159","-106.154510","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605445", +"2605447","W1632 WELL NO 05","WEST SHOP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11976-R","19021018","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NW","20","43.0 N","8.0 E","N","","","","","401177.0","4202583.0","37.965496","-106.125046","03/15/2021 14:03","https://dwr.state.co.us/Tools/Structures/2605447", +"2605448","W1632 WELL NO 06","GRAVEL PIT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11980-R","8827560","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","20","43.0 N","8.0 E","N","","","","","402383.0","4202609.0","37.965861","-106.111323","03/15/2021 14:04","https://dwr.state.co.us/Tools/Structures/2605448", +"2605449","W1632 WELL NO 07","W-1632WELL #7","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1632","11977-R","DUMMY14","ALOIA, TONY; COLORADO PARKS AND WILDLIFE","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","NW","SW","NW","20","43.0 N","8.0 E","N","","","","","401166.0","4202092.0","37.961071","-106.125104","02/06/2026 15:50","https://dwr.state.co.us/Tools/Structures/2605449", +"2605465","W1663 WELL NO 04","#17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, W1663","11031-F, 88698-F","DUMMY3","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","5","44.0 N","9.0 E","N","","","","","411888.0","4217420.0","38.100302","-106.004952","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605465", +"2605485","W1723 WELL NO 01","POOR FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1723","11597-R","09062748/10062856","HILL, KRISTI","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NE","SW","5","44.0 N","8.0 E","N","","","","","401934.0","4216540.0","38.091347","-106.118340","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605485", +"2605495","W1745 WELL NO 01","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1745","7081-R","052018000682/052018002665","WILSON, JAY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","SE","SE","14","44.0 N","8.0 E","N","","","","","407729.0","4213144.0","38.061355","-106.051827","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605495", +"2605557","W1892 WELL NO 02","CLARK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1892","6590-R","06-10-1508, 222607838","ALDEN RESERVE HECTARES LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","10","43.0 N","8.0 E","N","","","","","404436.0","4204947.0","37.987148","-106.088266","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605557", +"2605558","W1892 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6591-R","06-8-4586","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SE","NE","26","43.0 N","7.0 E","N","","","","","397420.0","4200589.0","37.947111","-106.167525","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605558", +"2605559","W1892 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6592-R","06-8-4585","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","26","43.0 N","7.0 E","N","","","","","397447.0","4201133.0","37.952016","-106.167295","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605559", +"2605562","W1892 WELL NO 10","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W1892","6598-R","06-10203-03","ADAM RANCH, LLC (ADAM, KIM & NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SE","NE","25","43.0 N","7.0 E","N","","","","","399046.0","4200465.0","37.946176","-106.149005","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605562", +"2605579","W1892 WELL NO 27","TRIANGLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1892","48991-F","25-00810-04","DAVEY FAMILY PARTNERSHIP, LTD","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","19","43.0 N","8.0 E","N","","","","","399489.0","4201766.0","37.957949","-106.144145","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605579", +"2605614","W1893 WELL NO 02","DAVEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1893","9541-F, 89450-F","21-05954-10","DAVEY, ERIKA; EARL DUANE DAVEY TRUST (DAVEY, DUANE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","15","43.0 N","8.0 E","N","","","","","404390.0","4203427.0","37.973446","-106.088587","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605614", +"2605627","W1902 WELL NO ASHLEY 03","ASHLEY 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20225-R, 118-WCB, 20225-R-R","17-08605-8","GYDESEN, CHRISTINE & BOB","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","NE","14","44.0 N","8.0 E","N","","","","","407084.0","4213837.0","38.067534","-106.059269","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605627", +"2605628","W1902 WELL NO ASHLEY 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20226-R","10062727/10062837","WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NE","22","44.0 N","8.0 E","N","","","","","405857.0","4212789.0","38.057963","-106.073116","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605628", +"2605630","W1902 WELL NO ASHLEY 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20645-R","07-8-2626","PHILLIPS, JEFFREY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SE","NE","23","44.0 N","8.0 E","N","","","","","407451.0","4212356.0","38.054226","-106.054894","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605630", +"2605631","W1902 WELL NO ASHLEY 07","ASHLEY 2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20646-R","07-8-1170","GYDESEN, CHRISTINE & BOB","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NW","13","44.0 N","8.0 E","N","","","","","407859.0","4213964.0","38.068757","-106.050451","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605631", +"2605674","W1902 WELL NO HENSON 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","18905-R","21-03470-10","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","30","44.0 N","9.0 E","N","","","","","410189.0","4210264.0","38.035650","-106.023428","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605674", +"2605675","W1902 WELL NO HENSON 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20361-R, 20361-R-R","09212323/09212243","WALKE & WALKE CATTLE CO LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","18","44.0 N","9.0 E","N","","","","","410283.0","4213101.0","38.061224","-106.022713","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605675", +"2605676","W1902 WELL NO HENSON 05","HANSON #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20362-R, 20362-R-R","24-05617","BOOTH, CHARLIE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","13","44.0 N","8.0 E","N","","","","","409441.0","4212724.0","38.057743","-106.032262","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605676", +"2605677","W1902 WELL NO HENSON 06","BULL PASTURE #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20363-R","18-04851-08","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","17","44.0 N","9.0 E","N","","","","","411125.0","4213069.0","38.061019","-106.013112","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605677", +"2605678","W1902 WELL NO HENSON 07","LITTLE WELL #6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20368-R, 37-WCB, 20368-R-R, 341578-","20-04461-08","GERSTBERGER, DALE & ANDREA; S, BENITO","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","30","44.0 N","9.0 E","N","","","","","410150.0","4210288.0","38.035862","-106.023875","05/20/2013 14:25","https://dwr.state.co.us/Tools/Structures/2605678", +"2605681","W1902 WELL NO S FARM 12","21","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20159-R-R","12062499/12062766","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NE","32","44.0 N","8.0 E","N","","","","","402590.0","4209643.0","38.029268","-106.109922","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605681", +"2605684","W1902 WELL NO S FARM 16","23","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20163-R","052018000679/072017003082","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","20","44.0 N","8.0 E","N","","","","","402277.0","4212075.0","38.051149","-106.113819","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605684", +"2605685","W1902 WELL NO S FARM 17","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20228-R, 20228-R-R","10063568/10063666","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SW","30","44.0 N","8.0 E","N","","","","","400217.0","4210112.0","38.033236","-106.137021","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605685", +"2605687","W1902 WELL NO S FARM 19","17","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20208-R-R, 20208-R-R","09212313/06214531","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NE","20","44.0 N","8.0 E","N","","","","","402652.0","4212462.0","38.054677","-106.109599","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605687", +"2605688","W1902 WELL NO S FARM 19A","18","Historical structure only - no longer exists or has records, but has historical data (H)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","17519-F","","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2022","3","26","SAGUACHE","","","","NE","SE","20","44.0 N","8.0 E","N","","","","","402665.0","4211675.0","38.047587","-106.109343","05/20/2024 14:51","https://dwr.state.co.us/Tools/Structures/2605688", +"2605689","W1902 WELL NO S FARM 20","8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20209-R","10063572/01250078","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","30","44.0 N","8.0 E","N","","","","","401018.0","4210084.0","38.033072","-106.127891","04/05/2013 08:29","https://dwr.state.co.us/Tools/Structures/2605689", +"2605690","W1902 WELL NO S FARM 21","2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20210-R, 20210-R-R","072017001407/10063735","RGWCD (IVERS, CHRIS); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","NW","30","44.0 N","8.0 E","N","","","","","400220.0","4210914.0","38.040463","-106.137098","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605690", +"2605692","W1902 WELL NO S FARM 23","11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W1902","20620-R","21-06232-08","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","20","44.0 N","8.0 E","N","","","","","401860.0","4212510.0","38.055024","-106.118631","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605692", +"2605693","W1902 WELL NO S FARM 24","12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1902","20621-R","07060393/07060920","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NW","SW","20","44.0 N","8.0 E","N","","","","","401834.0","4211708.0","38.047794","-106.118817","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605693", +"2605707","W2023 WELL NO 01","DAVEY POND WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2023","5016-F","00-10-1223","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NW","SE","19","43.0 N","8.0 E","N","","","","","400531.0","4201855.0","37.958866","-106.132299","03/15/2021 14:27","https://dwr.state.co.us/Tools/Structures/2605707", +"2605711","W2023 WELL NO 05","W-2023 WELL#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2023","","DUMMY15","ALOIA, TONY; US BUREAU OF RECLAMATION (RICH ROBERTS)","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","NW","NE","30","43.0 N","8.0 E","N","","","","","400270.0","4200888.0","37.950123","-106.135135","02/10/2026 10:42","https://dwr.state.co.us/Tools/Structures/2605711", +"2605718","W2035 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","8219-R","07-4-1091","DICKEY, KATY I.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","NW","NW","31","43.0 N","8.0 E","N","","","","","399411.0","4199110.0","37.934006","-106.144662","06/07/2023 11:06","https://dwr.state.co.us/Tools/Structures/2605718", +"2605720","W2035 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16211-R","DUMMY2","DICKEY, KATY I.","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SW","NW","31","43.0 N","8.0 E","N","","","","","399432.0","4198686.0","37.930188","-106.144364","02/06/2026 15:55","https://dwr.state.co.us/Tools/Structures/2605720", +"2605721","W2035 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16210-R","DUMMY 3","DICKEY, KATY I.","RGWCD SD5","10/31/2025","10/31/2025","3","26","SAGUACHE","","","","SW","NW","31","43.0 N","8.0 E","N","","","","","399585.0","4198682.0","37.930169","-106.142622","02/06/2026 15:55","https://dwr.state.co.us/Tools/Structures/2605721", +"2605722","W2035 WELL NO 05","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","16212-R","07-10033-3","DICKEY, KATY I.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","NW","31","43.0 N","8.0 E","N","","","","","399635.0","4198723.0","37.930544","-106.142059","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605722", +"2605728","W2035 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2035","10497-F","06-6-2149","ALLEN, RUSSELL; LAG-8 LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SE","NW","7","43.0 N","9.0 E","N","","","","","409654.0","4205096.0","37.989025","-106.028872","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605728", +"2605787","W2218 WELL NO 24","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","21CW3023, W2218","15416-F","10063547","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","SE","36","44.0 N","7.0 E","N","","","","","399227.0","4208119.0","38.015167","-106.148019","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605787", +"2605788","W2218 WELL NO 25","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","6018-R, 6018-R-R","04128380/01250075","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","NW","SE","1","43.0 N","7.0 E","N","","","","","399108.0","4206546.0","38.000980","-106.149153","12/11/2012 12:26","https://dwr.state.co.us/Tools/Structures/2605788", +"2605790","W2218 WELL NO 27","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","W2218","6020-R","17-06011-10","BAKER, CHANCE; MAMMOTH ACQUISITIONS LLC; MAMMOTH LAND HOLDINGS LLC (TROUARD, JUSTIN)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SE","SW","NE","1","43.0 N","7.0 E","N","","","","","399213.0","4206865.0","38.003866","-106.148002","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605790", +"2605791","W2218 WELL NO 28","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","7288-R","12204450/09212227","DIRKS, GERHARD","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","SW","NE","12","43.0 N","7.0 E","N","","","","","398912.0","4205523.0","37.991739","-106.151241","09/09/2008 11:04","https://dwr.state.co.us/Tools/Structures/2605791", +"2605792","W2218 WELL NO 29","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2218","15296-F","12062525/12062768-100972","ORTEGA, PHILLIP & VIOLA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","6","43.0 N","8.0 E","N","","","","","399729.0","4207346.0","38.008257","-106.142193","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605792", +"2605799","W2293 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","13924-R","09062712/10060156-100064","WHITTEN, GEORGE","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","NE","1","43.0 N","8.0 E","N","","","","","408512.0","4207781.0","38.013107","-106.042218","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605799", +"2605803","W2293 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","14600-R, 14600-R-R","17433021","HEKTARES LLC (RING, BRUCE); TOEPPER, BRENT","RGWCD SD5","10/31/2018","10/31/2025","3","26","SAGUACHE","","","","SE","NW","8","43.0 N","8.0 E","N","","","","","401602.0","4205469.0","37.991549","-106.120604","10/03/2023 16:23","https://dwr.state.co.us/Tools/Structures/2605803", +"2605804","W2293 WELL NO 07","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2293","14595-R","04081173","WEIS, CJ","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","6","43.0 N","8.0 E","N","","","","","399697.0","4206643.0","38.001919","-106.142459","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605804", +"2605858","W2452 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2452","5104-F","07-10-1138","WHEELER, KEVIN A. & KIMBERLY A.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","NW","18","43.0 N","8.0 E","N","","","","","399624.0","4203597.0","37.974463","-106.142865","03/15/2021 14:30","https://dwr.state.co.us/Tools/Structures/2605858", +"2605877","W2552 WELL NO 01","WINTZ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0040, W2552","11391-F, 67752-F","06-10-1506, 14-05160-8","DAVEY FAMILY PARTNERSHIP, LTD; QUAN, DAU G.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","24","43.0 N","7.0 E","N","","","","","399084.0","4201781.0","37.958039","-106.148757","09/17/2007 15:00","https://dwr.state.co.us/Tools/Structures/2605877", +"2605878","W2552 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2552","2927-F","06-10-1547","SCHMITTEL, DAVID & VERNA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","SW","SW","SW","2","42.0 N","8.0 E","N","","","","","405795.0","4196175.0","37.908242","-106.071643","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605878", +"2605879","W2552 WELL NO 03","JOHN DEERE - BY HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2552","6807-R","20-03748-10","SCHMITTEL, DAVID & VERNA","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","SE","13","43.0 N","7.0 E","N","","","","","399291.0","4203503.0","37.973579","-106.146642","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605879", +"2605882","W2576 WELL NO 02","SMITH TRACT WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2576","","17-11974-04","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","31","43.0 N","8.0 E","N","","","","","399442.0","4198490.0","37.928423","-106.144222","03/15/2021 14:32","https://dwr.state.co.us/Tools/Structures/2605882", +"2605883","W2576 WELL NO 03","SMITH TRACT WELL #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2576","10443-F","20801316","ALOIA, TONY; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN); US BUREAU OF RECLAMATION (REYNOLDS, NATE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","31","43.0 N","8.0 E","N","","","","","399508.0","4198209.0","37.925898","-106.143432","03/15/2021 14:33","https://dwr.state.co.us/Tools/Structures/2605883", +"2605950","W3917 WELL NO 09R","28","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3917","19513-Y, 19513-Y-R","10063544/10063725","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SW","33","44.0 N","8.0 E","N","","","","","403333.0","4208432.0","38.018435","-106.101294","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605950", +"2605951","W3961 COOK WELL NO 06","34","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3961","65-R-R","052018000680/12212636","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","33","44.0 N","8.0 E","N","","","","","404120.0","4208413.0","38.018348","-106.092327","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605951", +"2605952","W3961 COOK WELL NO 08","32","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3961","66-R-R","10063556/10063732","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","SE","28","44.0 N","8.0 E","N","","","","","404151.0","4210037.0","38.032985","-106.092191","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2605952", +"2605954","94CW015 WELL NO 08R","CORRAL PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","94CW0015","899-R-R","06-10-1406","GREEMAN, DEE; WOODARD RANCH, LLC","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NE","NW","36","44.0 N","8.0 E","N","","","","","408374.0","4209427.0","38.027925","-106.044000","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2605954", +"2605956","97CW005 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","97CW0005","21580-F","06-8-4828","LUND, TRENTON; TKZ LAND & CATTLE, LLC (LUND, TRENTON)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NE","SE","34","44.0 N","8.0 E","N","","","","","405731.0","4208391.0","38.018318","-106.073973","04/24/1998 00:00","https://dwr.state.co.us/Tools/Structures/2605956", +"2605957","94CW021 WELL NO 2-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0021","22471-F","09062738/10060106","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SE","NE","21","44.0 N","9.0 E","N","","","","","413957.0","4211818.0","38.050019","-105.980683","04/24/1998 00:00","https://dwr.state.co.us/Tools/Structures/2605957", +"2605958","94CW021 WELL NO 3-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","94CW0021","22472-F","072019003985/01201350","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SW","21","44.0 N","9.0 E","N","","","","","412973.0","4211649.0","38.048402","-105.991876","08/29/2018 15:56","https://dwr.state.co.us/Tools/Structures/2605958", +"2605959","98CW023 WELL NO 1R","#20","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0023","10402-F-R","12062632/122230537","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","NW","5","44.0 N","9.0 E","N","","","","","411464.0","4217087.0","38.097260","-106.009746","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2605959", +"2605960","98CW023 WELL NO 2R","#21/22","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0023","11030-F-R","12062595/12062676","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NW","NW","SW","5","44.0 N","9.0 E","N","","","","","411480.0","4216311.0","38.090269","-106.009467","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2605960", +"2605961","99CW006 WELL NO 1A","#19","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, 99CW0006","23225-F","12062592/12062687","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","NW","4","44.0 N","9.0 E","N","","","","","413133.0","4217066.0","38.097233","-105.990711","09/06/2007 12:15","https://dwr.state.co.us/Tools/Structures/2605961", +"2605962","99CW0006 WELL NO 1R","#18","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0036, 22CW3037, 99CW0006","98188-VE, 9156-F-R, 88696-F","12062528/12062753","ALLIED POTATO INC (DAVENPORT, JASON); MYERS, JARED S.","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","NE","NE","NE","5","44.0 N","9.0 E","N","","","","","412695.0","4217453.0","38.100678","-105.995753","01/29/2009 15:00","https://dwr.state.co.us/Tools/Structures/2605962", +"2605972","W2077 WELL NO. 1","HUNT SPRINGS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","12CW0047","24353-F-R","072019003973/062019000999","HILL FAMILY LIMITED PARNTERSHIP CJH (HILL, COREY); HILL LAND & CATTLE; HILL, CORY & AUBREY","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","SW","SW","2","44.0 N","8.0 E","N","","","","","406415.0","4216134.0","38.088163","-106.067195","03/06/2025 13:36","https://dwr.state.co.us/Tools/Structures/2605972", +"2605974","PERMIT 49981-F","6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","49981-F","12062518/12062784","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2009","10/31/2025","3","26","SAGUACHE","","","","NW","SE","19","44.0 N","8.0 E","N","","","","","400858.0","4211714.0","38.047742","-106.129940","07/25/2008 09:14","https://dwr.state.co.us/Tools/Structures/2605974", +"2606018","17CW3021 WELL NO 26","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: SAGUACHE CREEK","00192390","","17CW3021","317993-, 87119-F","17107014","BAXTER, JOHN AND CATHERINE","RGWCD SD5","10/31/2024","10/31/2025","3","26","SAGUACHE","","","","NW","NE","12","43.0 N","7.0 E","N","","","","","398874.0","4205843.0","37.994619","-106.151719","07/26/2024 14:17","https://dwr.state.co.us/Tools/Structures/2606018", +"2606025","SD5 SWSP WELL PERMIT 88103-F","SD5 SWSP WELL PERMIT 87850-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","87850-F, 88103-F","20-04464-08","RGWCD (IVERS, CHRIS)","RGWCD SD5","04/01/2023","10/31/2025","3","26","SAGUACHE","","","","SW","SE","12","44.0 N","7.0 E","N","","","","","399285.0","4214571.0","38.073313","-106.148266","07/28/2025 21:22","https://dwr.state.co.us/Tools/Structures/2606025", +"2606026","PERMIT 87919-F","SOUTH 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","87919-F","23-06043-06","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2023","10/31/2025","3","26","SAGUACHE","","","","SW","NE","32","44.0 N","8.0 E","N","","","","","402174.0","4209138.0","38.024673","-106.114592","08/26/2024 14:12","https://dwr.state.co.us/Tools/Structures/2606026", +"2606027","PERMIT 87920-F","NORTH 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","87920-F","22-06218-06","CALDON, KIT; RUGGLES, TED; VANDER EYK, CORNELIUS","RGWCD SD5","10/31/2023","10/31/2025","3","26","SAGUACHE","","","","SW","NE","32","44.0 N","8.0 E","N","","","","","402170.0","4209170.0","38.024961","-106.114642","08/27/2024 08:32","https://dwr.state.co.us/Tools/Structures/2606027", +"2705072","83CW014 WELL NO 01A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0014","26238-F, 319921-, 90436-F","06-12-1158","NAZARENUS STACK & WOMBACHER LLC (STACY BROWNHILL & WILLIAM WOMBACHER); STAREK, KAREL & ALICE","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","SW","SW","18","42.0 N","8.0 E","N","","","","","399266.0","4193347.0","37.882059","-106.145506","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705072", +"2705237","81CW089 WELL NO N14","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, 81CW0089","24286-F","07-8-3014","STRIDE BANK (ANDERSON, PATRICK); TEMPLE, BEAU AND KIMBERLEY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","12","42.0 N","7.0 E","N","","","","","398090.0","4195073.0","37.897481","-106.159120","03/15/2021 14:35","https://dwr.state.co.us/Tools/Structures/2705237", +"2705242","81CW089 WELL NO N19","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0019, 81CW0089","24287-F","GP13-5415-8","SMITH, KENNY D. AND DANA K.","RGWCD SD5","10/31/2013","10/31/2025","3","27","SAGUACHE","","","","NE","NE","13","42.0 N","7.0 E","N","","","","","398848.0","4194212.0","37.889807","-106.150380","08/02/2013 10:32","https://dwr.state.co.us/Tools/Structures/2705242", +"2705255","W3984 WELL NO 01","PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W3984","22521-F","07060395/07060933","COLORADO STATE LAND BOARD; MCCORMICK, JAMES R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NE","SW","26","42.0 N","7.0 E","N","","","","","396712.0","4190414.0","37.855343","-106.174124","03/15/2021 14:36","https://dwr.state.co.us/Tools/Structures/2705255", +"2705266","W0643 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0643","4344-F","06-8-3873","REGESTER RANCH LLC (REGESTER, ROBERT); REGESTER, ROBERT","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","NW","NW","NW","30","42.0 N","8.0 E","N","","","","","399200.0","4191290.0","37.863515","-106.145969","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705266", +"2705267","W2249 WELL NO 01","RANCH PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2249","14121-R","09060722/09060750","ENSZ, JOEL R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","7","42.0 N","8.0 E","N","","","","","399288.0","4194675.0","37.894028","-106.145441","12/05/2007 14:29","https://dwr.state.co.us/Tools/Structures/2705267", +"2705268","W2249 WELL NO 02","NORTH RANCH ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2249","14122-R","07-10-1141","ENSZ, JOEL R.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","7","42.0 N","8.0 E","N","","","","","399320.0","4195445.0","37.900970","-106.145185","12/05/2007 14:44","https://dwr.state.co.us/Tools/Structures/2705268", +"2705274","W0141 WELL NO 02","N DABNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0141","12235-F","19-07358-08","CRESTONE VIEW FARMS, LLC (GOOD, TERRY); GOOD, RYLAN L.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","33","42.0 N","8.0 E","N","","","","","402281.0","4188336.0","37.837231","-106.110549","03/15/2021 14:37","https://dwr.state.co.us/Tools/Structures/2705274", +"2705277","W1360 WELL NO 04","TRIPLE L SW #","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1360","11864-R","06-8-3868","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","27","42.0 N","8.0 E","N","","","","","404013.0","4189727.0","37.849950","-106.091054","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705277", +"2705278","W1360 WELL NO 03","TRIPLE L SW AR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","11863-R, 89292-F","07-4-1021","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","27","42.0 N","8.0 E","N","","","","","404086.0","4189724.0","37.849931","-106.090224","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705278", +"2705279","W1360 WELL NO 05","TRIPLE L SE AR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","11865-R, 89293-F","06-6-1311","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SE","SE","SW","27","42.0 N","8.0 E","N","","","","","404687.0","4189728.0","37.850030","-106.083394","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705279", +"2705280","W1360 WELL NO 06","TRIPLE L BY HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, 22CW3021, W1360","4076-F, 89294-F","06-10-1284","CRENSHAW, SHAWNA; HALE RIVER RANCH; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","27","42.0 N","8.0 E","N","","","","","404046.0","4190570.0","37.857550","-106.090790","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705280", +"2705281","79CW046 WELL NO 01","RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","79CW0046","22413-F","19-04764-06","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","NW","34","42.0 N","8.0 E","N","","","","","404360.0","4189306.0","37.846193","-106.087054","01/21/2003 00:00","https://dwr.state.co.us/Tools/Structures/2705281", +"2705295","W1633 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1633","4589-F","23-00107-12, 25000066","SCHRECK, KALEE A.","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NE","15","42.0 N","8.0 E","N","","","","","404915.0","4193766.0","37.886442","-106.081334","08/27/2009 11:56","https://dwr.state.co.us/Tools/Structures/2705295", +"2705302","W0402 WELL NO 01","#18 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0402","5461-F","22-01672-10","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SW","SW","19","42.0 N","9.0 E","N","","","","","408886.0","4191344.0","37.865022","-106.035877","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705302", +"2705303","W0402 WELL NO 05","#19 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0402","11661-R","06-6-2015","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","NW","19","42.0 N","9.0 E","N","","","","","408920.0","4192580.0","37.876164","-106.035646","02/21/1990 00:00","https://dwr.state.co.us/Tools/Structures/2705303", +"2705304","W0402 WELL NO 02","#13 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0022, W0402","11660-R, 325817-, 87467-F","06-8-4424, 22-024168, 22-024169, 23-09116-10","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","NW","SW","30","42.0 N","9.0 E","N","","","","","408917.0","4190152.0","37.854283","-106.035374","09/17/2007 14:59","https://dwr.state.co.us/Tools/Structures/2705304", +"2705662","W0363 WELL NO 03","#20 ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0402","11658-R","06-6-2013","CRENSHAW, SHAWNA; HALE, MICHAEL K. & CATHY L.; KEMPF, RANDY","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","","SE","NE","20","42.0 N","9.0 E","N","","","","","411684.0","4192221.0","37.873201","-106.004178","01/13/2009 09:11","https://dwr.state.co.us/Tools/Structures/2705662", +"2705849","W1633 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3000, W1633","","GP13-3991-8","ANDERSON, KEENAN L.; ANDERSON, KENNETH & DALLAS","RGWCD SD5","10/31/2013","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","35","42.0 N","7.0 E","N","","","","","395859.0","4189247.0","37.844729","-106.183650","07/25/2013 15:40","https://dwr.state.co.us/Tools/Structures/2705849", +"2705975","W2274 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2274","20045-R","GP10-0937-8","ARROW CATTLE (ENSZ, WESLEY)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","NW","29","42.0 N","8.0 E","N","","","","","400790.0","4190569.0","37.857192","-106.127797","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705975", +"2705976","W2274 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2274","36-WCB, 20045-S","23-09040-12, GP10-0936","ARROW CATTLE (ENSZ, WESLEY)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","29","42.0 N","8.0 E","N","","","","","400714.0","4189701.0","37.849362","-106.128542","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2705976", +"2706027","W2471 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W2471","11218-F","06-10-1490","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD5","10/31/2009","10/31/2025","3","27","SAGUACHE","","","SW","SW","SW","7","42.0 N","9.0 E","N","","","","","408990.0","4194569.0","37.894095","-106.035101","11/14/1995 00:00","https://dwr.state.co.us/Tools/Structures/2706027", diff --git a/Data/SBD_Data/StructureList_SBD6.csv b/Data/SBD_Data/StructureList_SBD6.csv new file mode 100644 index 0000000..d23f6a0 --- /dev/null +++ b/Data/SBD_Data/StructureList_SBD6.csv @@ -0,0 +1,439 @@ +WDID,Structure Name,Structure Name AKAs,CIU Code,Structure Type,Water Source,GNIS ID,Stream Mile,Associated Case Numbers,Associated Permits,Associated Meters,Contacts,User Assocation,POR Start,POR End,Div,WD,County,Designated Basin,Management District,Q10,Q40,Q160,Section,Township,Range,PM,Distance E/W,Direction E/W,Distance N/S,Direction N/S,UTM X,UTM Y,Latitude,Longitude,Modified,More Information, +"2005002","W0018 WELL NO 01","QUIRCO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3000, W0018","20485-R, 20485-R-R","09081698, 09082332-PIVOT","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","36","37.0 N","9.0 E","N","","","","","416219.0","4139874.0","37.401867","-105.946616","05/12/2023 11:22","https://dwr.state.co.us/Tools/Structures/2005002", +"2005003","W0072 WELL NO 01","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0007, W0072","7620-F","06-10-1551","BRADY, JOHN AND TRENNA; BRADY, STEVE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","10","37.0 N","8.0 E","N","","","","","404070.0","4146659.0","37.461836","-106.084744","06/25/2008 16:38","https://dwr.state.co.us/Tools/Structures/2005003", +"2005004","W0078 WELL NO 02","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0078","14580-R","07-10-1008","BRADY, JOHN AND TRENNA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","15","37.0 N","8.0 E","N","","","","","403248.0","4145576.0","37.451990","-106.093895","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005004", +"2005011","W1059 WELL NO 01","JACK RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1059","6284-F, 15135-F","02081359, 07-10-1104","MT VALLEY FARMS (SIMPSON, CLEAVE); SIMPSON, ALAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","27","38.0 N","10.0 E","N","","","","","423791.0","4152498.0","37.516297","-105.862379","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005011", +"2005014","W0113 WELL NO 01","BUNNY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0113","1294-R","06081521","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","24","37.0 N","8.0 E","N","","","","","407253.0","4144513.0","37.442820","-106.048488","12/02/2020 17:56","https://dwr.state.co.us/Tools/Structures/2005014", +"2005020","W1159 WELL NO 01","CHADWELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1159","11686-F, 6734-R, 39603-F","03-8-1971","RUTGERS, JAMES","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","22","38.0 N","9.0 E","N","","","","","413056.0","4153179.0","37.521485","-105.983919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005020", +"2005021","W0118 WELL NO 01","SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0118","8261-R, 9283-F","06-10-1446","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2024","3","20","CONEJOS","","","SW","SW","SW","14","36.0 N","8.0 E","N","","","","","404764.0","4135050.0","37.357285","-106.075401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005021", +"2005023","W0119 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0119","5772-F, 8264-R","23-02814-10","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","14","36.0 N","8.0 E","N","","","","","404798.0","4135907.0","37.365012","-106.075127","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005023", +"2005027","W0125 WELL NO 01","ROBERTSON (SMALL)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0125","10484-R","09062763/10060108","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","35","37.0 N","9.0 E","N","","","","","414610.0","4140636.0","37.408587","-105.964882","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005027", +"2005028","W1286 WELL NO 01","C-2 CARMEL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1286","11072-R","GP07-10-1074","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NW","NW","SW","26","36.0 N","8.0 E","N","","","","","404753.0","4132496.0","37.334266","-106.075197","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005028", +"2005031","W0132 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0132, W3942","20530-R, 20530-R-R","06-12-1079","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","9","36.0 N","9.0 E","N","","","","","412096.0","4137461.0","37.379738","-105.992907","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005031", +"2005032","W1333 WELL NO 01","POWERS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1333","12225-R","06-6-1698","FRANSEN, DALE; FRANSEN, DALE R. & KERI D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","22","37.0 N","9.0 E","N","","","","","412951.0","4143487.0","37.434127","-105.983961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005032", +"2005034","W1336 WELL NO 03","FIRE/BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","1845-R, 2460-F","03062372/03062388","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","35","37.0 N","8.0 E","N","","","","","404867.0","4139925.0","37.401230","-106.074865","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005034", +"2005036","W1355 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1355","77472-F","14-08169-8","MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","26","37.0 N","9.0 E","N","","","","","415428.0","4142157.0","37.422371","-105.955814","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005036", +"2005043","W1452 WELL NO 04","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW0018, W1452","13234-R, 13234-R-R, 90386-F","12062620/12062648 ","CALKIN, JOAN & MARVIN; CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","18","37.0 N","9.0 E","N","","","","","408156.0","4145478.0","37.451607","-106.038401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005043", +"2005054","W0152 WELL NO 01","MATTHEWS 8S X 5E","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0152","20401-R","18-07734","LARSON, DIEDRE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","14","37.0 N","8.0 E","N","","","","","405643.0","4145540.0","37.451913","-106.066817","09/17/2007 14:08","https://dwr.state.co.us/Tools/Structures/2005054", +"2005055","W1533 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1533","21063-R","12062516/12062779","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","21","37.0 N","9.0 E","N","","","","","411321.0","4144215.0","37.440534","-106.002471","09/17/2007 14:08","https://dwr.state.co.us/Tools/Structures/2005055", +"2005066","ALAMOSA ROSS ST WELL","PLANT WELL, W1788 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4567-R, 4567-R-R","93040916000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NW","NE","SW","10","37.0 N","10.0 E","N","","","","","423046.0","4146832.0","37.465170","-105.870215","12/02/2020 18:12","https://dwr.state.co.us/Tools/Structures/2005066", +"2005067","ALAMOSA WEBER ST WELL","W1788 WELL NO 05, WEBER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","16665-F","SC06EA16000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","","NE","NW","4","37.0 N","10.0 E","N","","","","","421389.0","4148964.0","37.484245","-105.889178","12/02/2020 18:13","https://dwr.state.co.us/Tools/Structures/2005067", +"2005070","W1815 WELL NO 01","B COLEMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1815","10752-R","06-8-4862","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","19","36.0 N","9.0 E","N","","","","","408018.0","4133535.0","37.343959","-106.038475","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005070", +"2005073","W1831 WELL NO 01","HOMEPLACE SO. RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ROCK CREEK","00190392","","W1831","6996-R","05-10-1541","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","20","37.0 N","8.0 E","N","","","","","400826.0","4144010.0","37.437620","-106.121063","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005073", +"2005074","W0184 WELL NO 02","WICKEY PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0184","11221-F","09062724/10060069","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","17","37.0 N","8.0 E","N","","","","","400863.0","4145989.0","37.455459","-106.120911","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005074", +"2005075","W0185 WELL NO 01","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0185","6584-R","22-04539-10","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","NW","24","36.0 N","8.0 E","N","","","","","406519.0","4134786.0","37.355084","-106.055554","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005075", +"2005076","W1866 WELL NO 02","AVILA CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1866","12277-R","23-05453-08","FRANSEN, NATHAN D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","17","36.0 N","9.0 E","N","","","","","409647.0","4134955.0","37.356917","-106.020260","02/07/2011 11:58","https://dwr.state.co.us/Tools/Structures/2005076", +"2005106","W2511 WELL NO 01","CARMEL FIELD #5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2511","1043-R, 1043-R-R","94-8-1354","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","24","36.0 N","8.0 E","N","","","","","407203.0","4134278.0","37.350574","-106.047768","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005106", +"2005108","W2517 WELL NO 01","MOMS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2517","2600-F","12061194/12061373-100888","CROWTHER, LEON C.; CROWTHER, LEONA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","7","36.0 N","9.0 E","N","","","","","408835.0","4136595.0","37.371618","-106.029629","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005108", +"2005110","W2544 WELL NO 02","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","473-R","07-8-1197","COBLENTZ, BENJAMIN A. & LAURA A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","31","37.0 N","8.0 E","N","","","","","398361.0","4140813.0","37.408542","-106.148482","01/16/2009 10:56","https://dwr.state.co.us/Tools/Structures/2005110", +"2005117","W0261 WELL NO 01","HAMILTON RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","4508-R, 4508-R-R, 88024-F","06-10-1187","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","34","37.0 N","8.0 E","N","","","","","403244.0","4140589.0","37.407046","-106.093286","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005117", +"2005118","W0261 WELL NO 02","#12 SOUTH HAMILTON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","4509-R","15-09734-10","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","34","37.0 N","8.0 E","N","","","","","403179.0","4139945.0","37.401235","-106.093936","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005118", +"2005128","W0323 WELL NO 01","RES #2,1 DIC, RES. #12 & 13 DIC","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","4524-R, 8964-F","11061485/11061653","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","34","37.0 N","8.0 E","N","","","","","403172.0","4140744.0","37.408435","-106.094120","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005128", +"2005129","W0323 WELL NO 04","LOCKWOOD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","10713-R, 10713-R-R, 50702-F","GP98-8-2021N","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","26","37.0 N","8.0 E","N","","","","","405655.0","4141879.0","37.418921","-106.066213","01/06/2009 12:46","https://dwr.state.co.us/Tools/Structures/2005129", +"2005130","W0325 WELL NO 01","HWY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0325","11890-F, 14702-R","02081355/12200763","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","35","37.0 N","8.0 E","N","","","","","404815.0","4140735.0","37.408525","-106.075557","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005130", +"2005139","W0346 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0346","12865-R","12061241/12061361","TRUJILLO, WAYNE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","13","37.0 N","8.0 E","N","","","","","406459.0","4145360.0","37.450374","-106.057570","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005139", +"2005143","ALAMOSA 21ST STREET WELL","PERMIT 16667-F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3526","16667-F","93040316000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NW","NE","SW","15","37.0 N","10.0 E","N","","","","","423026.0","4145092.0","37.449486","-105.870260","12/02/2020 18:15","https://dwr.state.co.us/Tools/Structures/2005143", +"2005146","W0364 WELL NO 01","LEO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0364","20710-R","23-03176-12","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","20","36.0 N","9.0 E","N","","","","","410446.0","4133714.0","37.345810","-106.011089","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005146", +"2005147","W0368 WELL NO 01","DANIELS WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0368","17332-R","06-8-2110","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","23","37.0 N","8.0 E","N","","","","","404830.0","4143175.0","37.430516","-106.075702","06/07/2022 15:25","https://dwr.state.co.us/Tools/Structures/2005147", +"2005151","W0394 WELL NO 01","RYKER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0394","11129-R","12230508","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","7","36.0 N","9.0 E","N","","","","","408007.0","4136621.0","37.371770","-106.038982","09/17/2007 14:06","https://dwr.state.co.us/Tools/Structures/2005151", +"2005188","W0567 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0567","8661-R, 8661-R","09061957/09061978","BRADY, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","22","37.0 N","8.0 E","N","","","","","404017.0","4143985.0","37.437732","-106.084995","02/24/2005 15:12","https://dwr.state.co.us/Tools/Structures/2005188", +"2005189","W0575 WELL NO 01","#4 S HWY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","1686-R, 1686-R-R","03122944","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","19","36.0 N","9.0 E","N","","","","","408013.0","4134195.0","37.349907","-106.038613","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005189", +"2005190","W0575 WELL NO 03","#3-HWY-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","5030-F, 1688-R","12062507/12062762","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","18","36.0 N","9.0 E","N","","","","","408014.0","4135035.0","37.357477","-106.038706","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005190", +"2005194","W0650 WELL NO 01","SANDOVALS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0650","15486-R","05-8-3950","FRANSEN, DALE R. & KERI D.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","22","37.0 N","9.0 E","N","","","","","413028.0","4143105.0","37.430692","-105.983046","09/17/2007 14:01","https://dwr.state.co.us/Tools/Structures/2005194", +"2005200","W0735 WELL NO 04","EAST CODY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0735","10483-R","10061971/10061996","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","33","37.0 N","9.0 E","N","","","","","412514.0","4139773.0","37.400614","-105.988460","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005200", +"2005204","W0794 WELL NO 02","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0794","10202-R","07-8-1237","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","32","37.0 N","10.0 E","N","","","","","419864.0","4139767.0","37.401225","-105.905426","09/17/2007 14:09","https://dwr.state.co.us/Tools/Structures/2005204", +"2005209","W0837 WELL NO 01","T4: #5 WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","1749-R","06-10-1184","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","27","37.0 N","8.0 E","N","","","","","403983.0","4141562.0","37.415892","-106.085064","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005209", +"2005210","W0837 WELL NO 02","T4 #1; RES WELL (N. OF TED)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","11194-R","06-10-1183","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","29","37.0 N","8.0 E","N","","","","","400012.0","4142371.0","37.422762","-106.130041","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005210", +"2005317","82CW0148","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0148, W0895","10259-R","12062517/12062776","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","20","37.0 N","9.0 E","N","","","","","410501.0","4144275.0","37.440995","-106.011746","05/20/2024 11:46","https://dwr.state.co.us/Tools/Structures/2005317", +"2005318","W0898 WELL NO 01","HOME FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0898","20945-R","22-05599-10","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","34","37.0 N","9.0 E","N","","","","","413328.0","4140642.0","37.408522","-105.979366","09/17/2007 14:04","https://dwr.state.co.us/Tools/Structures/2005318", +"2005319","W0923 WELL NO 02","MIDDLEMIST BIG RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0923","16012-R","07-10-1024","MIDDLEMIST FARMS (MIDDLEMIST, ROBERT)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NE","14","36.0 N","8.0 E","N","","","","","406388.0","4135888.0","37.365002","-106.057172","09/17/2007 14:04","https://dwr.state.co.us/Tools/Structures/2005319", +"2005321","W0954 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0954","11487-R, 11488-R, 11489-R, 870-F-R","06-6-2097","WIDGER, KAREN; WIDGER, KAREN L. & MICHAEL JAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","15","37.0 N","8.0 E","N","","","","","403224.0","4145180.0","37.448419","-106.094114","09/17/2007 11:41","https://dwr.state.co.us/Tools/Structures/2005321", +"2005369","W0539 WELL NO 01","FLOW - BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0018, W0539, W3331","27145-F, 1528-R","10061970/10061991, 10063531/10063710","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","29","37.0 N","9.0 E","N","","","","","410473.0","4141775.0","37.418462","-106.011760","09/17/2007 14:03","https://dwr.state.co.us/Tools/Structures/2005369", +"2005385","79CW018 WELL NO 01R","EAST CIRCLE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0018","22519-F-R, 22519-F-R","09062762/10061624","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","NE","35","37.0 N","9.0 E","N","","","","","415613.0","4140559.0","37.407985","-105.953541","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005385", +"2005386","W0116 WELL NO 01","BIG PUMP WELL - JONES PL.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","79CW0063, W0116","7252-R","06-10-1549","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","16","37.0 N","8.0 E","N","","","","","401698.0","4144775.0","37.444608","-106.111310","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005386", +"2005389","ALAMOSA HIGHWAY 17 WELL","HIGHWAY 17 WELL, W3214-78 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3214, W3214-78","20377-F","93040716000","EAST ALAMOSA WATER AND SEWER DISTICT; SANCHEZ, ROY","RGWCD SD6","10/31/1997","10/31/2025","3","20","ALAMOSA","","","SE","SE","NE","3","37.0 N","10.0 E","N","","","","","424151.0","4148501.0","37.480303","-105.857893","12/02/2020 18:16","https://dwr.state.co.us/Tools/Structures/2005389", +"2005390","ALAMOSA BRUSH WELL","BRUSH WELL, W3214-78 WELL NO 02","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3214, W3214-78","20376-F","C601E216000","EAST ALAMOSA WATER AND SEWER DISTICT; SANCHEZ, ROY","RGWCD SD6","10/31/1997","10/31/2025","3","20","ALAMOSA","","","NE","NE","NE","11","37.0 N","10.0 E","N","","","","","425491.0","4147504.0","37.471427","-105.842638","12/02/2020 18:19","https://dwr.state.co.us/Tools/Structures/2005390", +"2005395","W1293 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1293, W3916","13218-R","12062543/04201662","CALKIN, JOAN & MARVIN; CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","24","37.0 N","8.0 E","N","","","","","407234.0","4143161.0","37.430634","-106.048532","09/17/2007 14:21","https://dwr.state.co.us/Tools/Structures/2005395", +"2005414","W0482 WELL NO 01","#3-RES-S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W3866","2399-F","08230942/042015004223","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","18","36.0 N","9.0 E","N","","","","","408829.0","4134986.0","37.357116","-106.029499","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005414", +"2005415","W3866 WELL NO 01","ESPERANZA #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3866","6798-R, 6798-R-R, 6798-R-R","12062541/12062719","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","17","36.0 N","9.0 E","N","","","","","410058.0","4136132.0","37.367565","-106.015762","02/04/2013 14:43","https://dwr.state.co.us/Tools/Structures/2005415", +"2005420","W2431 WELL NO 02","WELL #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0013, W2431, W3951","","07-4-1027","COLE-HATCHARD, STEPHEN J. & ANN M.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","10","38.0 N","11.0 E","N","","","","","432388.0","4156136.0","37.549756","-105.765440","02/03/2021 15:33","https://dwr.state.co.us/Tools/Structures/2005420", +"2005442","W1782 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0075, W1782","6982-F, 6982-F-R","12-04436-04","ROCKY MOUNTAIN HOME BUILDERS LLC (YODER, MATT & CHESTER)","RGWCD SD6","10/31/2013","10/31/2025","3","20","ALAMOSA","","","SW","NE","SE","13","37.0 N","9.0 E","N","","","","","417462.0","4145034.0","37.448483","-105.933151","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005442", +"2005486","W1030 WELL NO 01","HILT PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1030, W3751","22648-F, 22648-F-R","06-8-4923","CHRISTENSEN, BRYAN & VIRGINIA; TRATOS-HILT FAMILY TRUST (TRATOS, MICHELE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","20","37.0 N","8.0 E","N","","","","","400457.0","4144032.0","37.437779","-106.125236","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005486", +"2005600","82CW088 WELL NO 03R","TONY 1,2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0088","14704-R-R, 14704-R-R","11060529/11060636","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SW","SE","28","37.0 N","8.0 E","N","","","","","402367.0","4141816.0","37.418012","-106.103356","03/06/2009 16:11","https://dwr.state.co.us/Tools/Structures/2005600", +"2005805","83CW004 WELL NO 01R","CONFINED","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","83CW0004","25792-F-R, 45498-F","","SKY LINE HOSPITALITY","RGWCD SD6","10/31/2009","10/31/2020","3","20","ALAMOSA","","","SE","NE","NE","6","37.0 N","10.0 E","N","","","","","419241.0","4149014.0","37.484510","-105.913477","10/11/2023 15:13","https://dwr.state.co.us/Tools/Structures/2005805", +"2005873","84CW027 WELL NO 02R","TRAILER HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","84CW0027","7253-R-R","05-10-1551","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","21","37.0 N","8.0 E","N","","","","","401721.0","4144376.0","37.441014","-106.110997","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005873", +"2005874","W1831 WELL NO 03","STANTON'S OLD HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","3860-F","07-10-1069","JOHNSON, SHIRLEY E.; JOHNSON, STANTON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","17","37.0 N","8.0 E","N","","","","","400043.0","4144794.0","37.444602","-106.130019","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005874", +"2005875","W1831 WELL NO 04","IVANS RES. WELL - HOME PASTURE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","3702-F","06-8-4922","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","17","37.0 N","8.0 E","N","","","","","400819.0","4144791.0","37.444658","-106.121247","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005875", +"2005883","W1460 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","20CW0014, W1460","10636-R","10061955/10062043","HEMMERLING, BRETT & JONI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NE","SE","9","39.0 N","7.0 E","N","","","","","393367.0","4166518.0","37.639624","-106.208632","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2005883", +"2005917","85CW063 WELL NO 01R","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","85CW0063","12075-F, 12075-F-R","07-8-1044","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","6","36.0 N","9.0 E","N","","","","","408068.0","4139026.0","37.393451","-106.038593","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005917", +"2005925","82CW128 WELL NO 01R","OUT WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0128","1227-R-R","12204460/12062680","RGWCD (KELLER, WYLIE); RIO GRANDE WATER CONSERVATION DISTRICT (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","29","39.0 N","7.0 E","N","","","","","391648.0","4161721.0","37.596195","-106.227401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2005925", +"2006000","80CW100 WELL FWS23-20A","MUMM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0100, 93CW0028","6420-R","24-8-1011","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","03/31/1993","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","22","37.0 N","11.0 E","N","","","","","432310.0","4142957.0","37.430970","-105.765110","12/02/2020 18:21","https://dwr.state.co.us/Tools/Structures/2006000", +"2006071","80CW116 WELL 18-3-16A&P","#60-18-3-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0116","9186-F","01-10-1092N, GP12-5260-12","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","2","37.0 N","8.0 E","N","","","","","405550.0","4147951.0","37.473632","-106.068177","12/02/2020 18:22","https://dwr.state.co.us/Tools/Structures/2006071", +"2006073","80CW106 WELL 6-1-16 A&P","#9-6-1-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0106","12661-F, 8808-F","25-01834-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","NE","31","38.0 N","8.0 E","N","","","","","399251.0","4151189.0","37.502147","-106.139846","12/02/2020 18:24","https://dwr.state.co.us/Tools/Structures/2006073", +"2006101","80CW121 WELL 23-6-16 A&P","#7-23-6-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0121","285-R, 12660-F","24100742","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","10","37.0 N","8.0 E","N","","","","","404099.0","4147160.0","37.466354","-106.084481","12/02/2020 18:25","https://dwr.state.co.us/Tools/Structures/2006101", +"2006105","80CW114 WELL 16-1-16 A&P","#50-16-1-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0114","2480-F","23-01761-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","4","37.0 N","8.0 E","N","","","","","401652.0","4148015.0","37.473802","-106.112262","12/02/2020 18:26","https://dwr.state.co.us/Tools/Structures/2006105", +"2006122","80CW112 WELL NO 14-1-16P","#10-14-1-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0112","3776-F","GP13-0961-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","6","37.0 N","8.0 E","N","","","","","398436.0","4149597.0","37.487711","-106.148845","12/02/2020 18:27","https://dwr.state.co.us/Tools/Structures/2006122", +"2006130","80CW112 WELL 14-10-16A&P","#4-14-10-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0112","12658-F, 443-R","07-10-1447","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","6","37.0 N","8.0 E","N","","","","","399249.0","4148005.0","37.473453","-106.139432","12/02/2020 18:28","https://dwr.state.co.us/Tools/Structures/2006130", +"2006181","80CW107 WELL 7-2-16 A&P","#51-7-2-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0107","2481-F","GP94-10-1117N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","32","38.0 N","8.0 E","N","","","","","400419.0","4149620.0","37.488134","-106.126421","12/02/2020 18:29","https://dwr.state.co.us/Tools/Structures/2006181", +"2006225","80CW117 WELL NO 19-2-12P","#12-19-2-12P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","19227-F","98-6-1250","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","12","37.0 N","7.0 E","N","","","","","397019.0","4146711.0","37.461546","-106.164466","12/02/2020 18:30","https://dwr.state.co.us/Tools/Structures/2006225", +"2006228","80CW117 WELL NO 19-6-16P","#56-19-6-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","3896-F","GP01-10-1300N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","12","37.0 N","7.0 E","N","","","","","397600.0","4146450.0","37.459258","-106.157862","12/02/2020 18:31","https://dwr.state.co.us/Tools/Structures/2006228", +"2006236","80CW117 WELL NO 19-1-12P","#2-19-1-120","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0117","284-R","07-8-3129","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","12","37.0 N","7.0 E","N","","","","","396819.0","4147694.0","37.470382","-106.166865","12/02/2020 18:32","https://dwr.state.co.us/Tools/Structures/2006236", +"2006257","MV BATTERSON WELL","W0847 WELL NO 01","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","4551-R, 4551-R-R","02092576","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","36","39.0 N","7.0 E","N","","","","","398383.0","4159284.0","37.575002","-106.150785","12/02/2020 18:34","https://dwr.state.co.us/Tools/Structures/2006257", +"2006258","W0847 WELL NO 02","JACKSON STREET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W0847","4552-R","23080167","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","31","39.0 N","8.0 E","N","","","","","399227.0","4159511.0","37.577141","-106.141260","12/02/2020 18:35","https://dwr.state.co.us/Tools/Structures/2006258", +"2006259","MV BROADWAY ST WELL","W0847 WELL NO 03","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","4553-R","08093041","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","31","39.0 N","8.0 E","N","","","","","398569.0","4160064.0","37.582052","-106.148787","12/02/2020 18:36","https://dwr.state.co.us/Tools/Structures/2006259", +"2006260","MV SHERMAN ST WELL","W0847 WELL NO 04","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0847","13163-F","24100567","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1970","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","32","39.0 N","8.0 E","N","","","","","400951.0","4159225.0","37.574750","-106.121700","12/02/2020 18:37","https://dwr.state.co.us/Tools/Structures/2006260", +"2006261","88CW013 WELL NO 08","PROSPECT STREET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","88CW0013","24019-F, 33733-F","052019004291","ABEYTA, ROBERT (BOBBY); CITY OF MONTE VISTA C/O WATER RESOURCES","RGWCD SD6","10/31/1989","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","36","39.0 N","7.0 E","N","","","","","397716.0","4160071.0","37.582021","-106.158447","12/02/2020 18:38","https://dwr.state.co.us/Tools/Structures/2006261", +"2006296","W1802 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","14CW0002, 87CW0035, W1802","5871-F, 5871-F-R","08223646/08062005","FRANCIS, ALBERT & KATRINA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","7","37.0 N","9.0 E","N","","","","","408103.0","4147060.0","37.465859","-106.039198","02/07/2011 11:59","https://dwr.state.co.us/Tools/Structures/2006296", +"2006316","ALAMOSA 12TH ST WELL","W1788 WELL NO 02","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4568-R, 4568-R-R","93040516000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","11","37.0 N","10.0 E","N","","","","","424233.0","4146258.0","37.460094","-105.856735","12/02/2020 18:49","https://dwr.state.co.us/Tools/Structures/2006316", +"2006317","ALAMOSA COLE PARK WELL","W1778 WELL NO 03","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","02CW0043, W1778","4569-R","93040616000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SE","NW","NE","10","37.0 N","10.0 E","N","","","","","423646.0","4147367.0","37.470041","-105.863487","12/02/2020 18:50","https://dwr.state.co.us/Tools/Structures/2006317", +"2006406","ALAMOSA GOLF COURSE WELL","GOLF COURSE, W1788 WELL NO 06","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1778","13419-F, 13419-F-R","93040816000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","3","37.0 N","10.0 E","N","","","","","422947.0","4148447.0","37.479717","-105.871504","12/02/2020 18:51","https://dwr.state.co.us/Tools/Structures/2006406", +"2006408","ALAMOSA MURPHY ST WELL","MURPHY WELL, W1788 WELL NO 04","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1778","4345-F","93040416000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/1991","10/31/2025","3","20","ALAMOSA","","","SE","NE","SW","4","37.0 N","10.0 E","N","","","","","421760.0","4148200.0","37.477391","-105.884901","12/02/2020 18:52","https://dwr.state.co.us/Tools/Structures/2006408", +"2006641","92CW002 WELL NO 01R","FIELD 15","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0002","1349-R-R","23-05832","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","26","37.0 N","8.0 E","N","","","","","405234.0","4141903.0","37.419094","-106.070973","11/17/1993 00:00","https://dwr.state.co.us/Tools/Structures/2006641", +"2006680","92CW048 WELL NO 01RA","ROBERTSON (BIG)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","92CW0048","37970-F","12062638/12062664","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","35","37.0 N","9.0 E","N","","","","","414600.0","4140531.0","37.407640","-105.964982","01/28/1994 00:00","https://dwr.state.co.us/Tools/Structures/2006680", +"2006690","W1929 WELL NO 02","HOT POND","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1929","","00-10-1224","ALOIA, TONY; COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/1994","10/31/2025","3","20","RIO GRANDE","","","NE","SW","SE","35","39.0 N","8.0 E","N","","","","","406024.0","4159486.0","37.577634","-106.064293","12/02/2020 19:23","https://dwr.state.co.us/Tools/Structures/2006690", +"2008079","80CW110 WELL FWS11-1-16P","#48-11-1-16 P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0110","6153-R, 6153-R-R","07-4-1176","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","31","38.0 N","9.0 E","N","","","","","408157.0","4150916.0","37.500616","-106.039068","12/02/2020 19:24","https://dwr.state.co.us/Tools/Structures/2008079", +"2008081","80CW111 WELL FWS13-1-16P","#11-13-1-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0111","11863-F-R, 286-R","07-10-1450","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SW","1","37.0 N","7.0 E","N","","","","","397052.0","4148816.0","37.480519","-106.164388","12/02/2020 19:25","https://dwr.state.co.us/Tools/Structures/2008081", +"2008101","80CW113 WELL FWS15-2-16A&P","#5-15-2-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0113","444-R, 12657-F","01-10-1312N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SE","6","37.0 N","8.0 E","N","","","","","400043.0","4148818.0","37.480866","-106.130565","03/19/2021 15:22","https://dwr.state.co.us/Tools/Structures/2008101", +"2008102","80CW113 WELL FWS15-20-16AP","#1-15-20-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0113","283-R, 12659-F-R","94-10-1116N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","5","37.0 N","8.0 E","N","","","","","400844.0","4148033.0","37.473878","-106.121401","12/02/2020 19:26","https://dwr.state.co.us/Tools/Structures/2008102", +"2008104","80CW118 WELL FWS20-4-16P","#3-20-4-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","442-R","24-07510-10","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","7","37.0 N","8.0 E","N","","","","","398454.0","4147212.0","37.466219","-106.148312","12/02/2020 19:27","https://dwr.state.co.us/Tools/Structures/2008104", +"2008105","80CW118 WELL FWS20-7-20P","#61=-20-7-20P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","1717-R","01-10-1336N","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","7","37.0 N","8.0 E","N","","","","","398522.0","4146392.0","37.458837","-106.147430","12/02/2020 19:28","https://dwr.state.co.us/Tools/Structures/2008105", +"2008106","80CW118 WELLFWS20-22-16P","#57-20-22-16P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0118","20689-R","25-03760-08","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","7","37.0 N","8.0 E","N","","","","","399241.0","4146396.0","37.458952","-106.139303","12/02/2020 19:29","https://dwr.state.co.us/Tools/Structures/2008106", +"2008112","80CW119 WELLFWS21-49-16P","#62-21-49-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0119","22402-F","GP02-10-1335","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","8","37.0 N","8.0 E","N","","","","","400062.0","4146422.0","37.459275","-106.130025","12/02/2020 19:30","https://dwr.state.co.us/Tools/Structures/2008112", +"2008123","80CW120WELLFWS22-3-16A&P","#47-22-3-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0120","551-R, 12664-F","07-12-1118","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","9","37.0 N","8.0 E","N","","","","","401737.0","4147190.0","37.466376","-106.111191","12/02/2020 19:31","https://dwr.state.co.us/Tools/Structures/2008123", +"2008124","80CW120WELLFWS22-8-16A&P","#49-22-8-16 A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0120","12662-F, 2479-F","01-06244-8","ALAMOSA WILDLIFE REFUGE; UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SW","SE","9","37.0 N","8.0 E","N","","","","","402652.0","4146426.0","37.459588","-106.100745","12/02/2020 19:32","https://dwr.state.co.us/Tools/Structures/2008124", +"2008327","W0029 WELL NO 01","SCHNEIDER, N","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0029","874-R","02081361/02081385","SCHNEIDER, GERRET J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","27","37.0 N","9.0 E","N","","","","","413759.0","4142298.0","37.423487","-105.974690","04/17/2020 09:06","https://dwr.state.co.us/Tools/Structures/2008327", +"2008329","W0032 WELL NO 01","COVERED WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6582-R","23-08475-12","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","1","36.0 N","8.0 E","N","","","","","406402.0","4138307.0","37.386805","-106.057320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008329", +"2008331","W0032 WELL NO 03","CARMEL 2 (SW 80)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6581-R","12230555/10061031","PAINE, JAMES; PAINE, NATALIE; WILHELM, CHRISTOPHER","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","14","36.0 N","8.0 E","N","","","","","405934.0","4136195.0","37.367723","-106.062337","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008331", +"2008332","W0032 WELL NO 05","FIELD #10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6583-R","05061446/05061482","FAUCETTE, TYLER & ROCHELLE; GREEN MOUNTAIN FARMS, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","11","36.0 N","8.0 E","N","","","","","405576.0","4137482.0","37.379286","-106.066544","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008332", +"2008334","W0032 WELL NO 07","FIELD #9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0032","6580-R","14-11189-10","FAUCETTE, TYLER & ROCHELLE; GREEN MOUNTAIN FARMS, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","2","36.0 N","8.0 E","N","","","","","405581.0","4138288.0","37.386550","-106.066590","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008334", +"2008337","W0034 WELL NO 01","JACKS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0034","20714-R","06-6-2098","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","NW","33","37.0 N","10.0 E","N","","","","","421427.0","4140518.0","37.408127","-105.887849","09/17/2007 14:23","https://dwr.state.co.us/Tools/Structures/2008337", +"2008339","W0035 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0035","21053-S","09062729/10060151","GERSINK, KENT; GESINK, ELBERT & MARLA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","32","37.0 N","9.0 E","N","","","","","410468.0","4140692.0","37.408701","-106.011685","09/17/2007 13:52","https://dwr.state.co.us/Tools/Structures/2008339", +"2008369","W0066 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0066","3276-F","06-6-2152","WOLF FAMILY TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SE","20","38.0 N","10.0 E","N","","","","","420245.0","4153323.0","37.523433","-105.902590","06/20/2022 20:16","https://dwr.state.co.us/Tools/Structures/2008369", +"2008393","W0085 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0085","11826-F","GP06-10-1350","FRANSEN, DUANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","SW","21","37.0 N","9.0 E","N","","","","","411317.0","4143811.0","37.436892","-106.002467","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008393", +"2008394","W0085 WELL NO. 2","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0085","20664-F, 20664-F-R","01-8-1803","FRANSEN, DUANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","21","37.0 N","9.0 E","N","","","","","412121.0","4143480.0","37.433986","-105.993341","03/26/2009 09:57","https://dwr.state.co.us/Tools/Structures/2008394", +"2008487","W0107 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0107","10268-R","22-05513","SKADBERG, ADAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","11","36.0 N","8.0 E","N","","","","","405575.0","4136910.0","37.374130","-106.066482","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008487", +"2008492","W0109 WELL NO 02","VANDEREYK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","8573-R, 8573-R-R","06-12-1113","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","12","36.0 N","8.0 E","N","","","","","407189.0","4137495.0","37.379566","-106.048329","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008492", +"2008493","W0109 WELL NO 03","#2 SMALL (VANDER EYK)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","14CW3027, W0109","8574-R","07-8-1239","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2024","3","20","CONEJOS","","","SW","SW","NW","12","36.0 N","8.0 E","N","","","","","406395.0","4137457.0","37.379143","-106.057291","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008493", +"2008494","W0109 WELL NO 04","#2 BIG (VANDER EYK)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","8575-R, 8575-R-R","07-12-1026","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","12","36.0 N","8.0 E","N","","","","","406449.0","4137454.0","37.379122","-106.056681","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008494", +"2008496","W0109 WELL NO 07","DADS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0109","10270-R","22-02290-10","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SE","13","36.0 N","8.0 E","N","","","","","407198.0","4135060.0","37.357621","-106.047922","09/17/2007 14:21","https://dwr.state.co.us/Tools/Structures/2008496", +"2008498","W0114 WELL NO 01","TNT #1 & #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0114","13115-R","05201410","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","24","37.0 N","7.0 E","N","","","","","397643.0","4143207.0","37.430037","-106.156925","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008498", +"2008506","W0120 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0120","8263-R","06-10-1109","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","15","36.0 N","8.0 E","N","","","","","403955.0","4135863.0","37.364528","-106.084640","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008506", +"2008507","W0120 WELL NO 02","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3044, W0120","8262-R-R, 87536-F","06-8-3844","RODNEY A. REINHARDT LIVING TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","11","36.0 N","8.0 E","N","","","","","404781.0","4136691.0","37.372076","-106.075420","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008507", +"2008508","W0122 WELL NO 01","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0122","7053-R, 173-WCB","12061215/12061393","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","10","38.0 N","8.0 E","N","","","","","404308.0","4156914.0","37.554279","-106.083388","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008508", +"2008515","W0122 WELL NO 09","#4","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0122","11655-F","09060712/09060744","MCCATHARN, PETER D.; STOEBER, HAROLD","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","15","38.0 N","8.0 E","N","","","","","403440.0","4155965.0","37.545636","-106.093089","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008515", +"2008523","W0127 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0127","1052-R","052018002648/052018002654","WASHBURN LIVING TRUST (WASHBURN, JEFFREY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","35","37.0 N","8.0 E","N","","","","","404810.0","4140327.0","37.404847","-106.075561","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008523", +"2008533","W0135 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0135","7-R","07-10-1093","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","22","36.0 N","8.0 E","N","","","","","403941.0","4134414.0","37.351468","-106.084610","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008533", +"2008534","W0135 WELL NO 02","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0135","8-R-R","77-8-130M","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SE","15","36.0 N","8.0 E","N","","","","","404020.0","4135146.0","37.358073","-106.083813","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008534", +"2008557","W0144 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0144","13904-R, 13904-R-R","24-00689-08","MARTIN CATTLE CO. (MARTIN, DWIGHT)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","17","36.0 N","9.0 E","N","","","","","410468.0","4135766.0","37.364306","-106.011088","10/28/2020 15:34","https://dwr.state.co.us/Tools/Structures/2008557", +"2008569","W0149 WELL NO 01","SCHNEIDER, S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0149","20916-R","14-11363-10","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","23","37.0 N","9.0 E","N","","","","","414606.0","4144217.0","37.440861","-105.965341","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008569", +"2008588","W0168 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0007, W0168","20402-R","07-10-1009","BRADY, JOHN AND TRENNA; BRADY, STEVE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","11","37.0 N","8.0 E","N","","","","","404907.0","4146360.0","37.459228","-106.075243","06/25/2008 16:46","https://dwr.state.co.us/Tools/Structures/2008588", +"2008589","W0171 WELL NO 01","SO. RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0171","20750-R","06-8-4422","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","19","37.0 N","8.0 E","N","","","","","398637.0","4143162.0","37.429741","-106.145686","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008589", +"2008618","W0184 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0184","10650-R","11061483/11061579","HAUGEN, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","36","38.0 N","7.0 E","N","","","","","397417.0","4150017.0","37.491383","-106.160427","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008618", +"2008619","W0185 WELL NO 02","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0185","6576-R","11061704","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","SW","24","36.0 N","8.0 E","N","","","","","406773.0","4133900.0","37.347125","-106.052575","02/06/2026 12:52","https://dwr.state.co.us/Tools/Structures/2008619", +"2008650","W0212 WELL NO 01","SOW","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0212","503-R","04060830/03062408","KOLB, BILL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","21","38.0 N","8.0 E","N","","","","","402524.0","4154331.0","37.530814","-106.103239","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008650", +"2008673","W0235 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3023, W0235","11086-R, 339422-","","PETERSON, MICHAEL & AARON","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NE","36","36.0 N","9.0 E","N","","","","","417711.0","4130998.0","37.322004","-105.928775","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008673", +"2008674","W0235 WELL NO 02","ROAD Z WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0235","11087-R","06-8-2775","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","31","36.0 N","9.0 E","N","","","","","408065.0","4130181.0","37.313736","-106.037529","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008674", +"2008685","W0242 WELL NO 01","#63-24-1-16A&P","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0242","2379-F","GP09-1900","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","1","37.0 N","8.0 E","N","","","","","407309.0","4148107.0","37.475216","-106.048307","12/02/2020 19:35","https://dwr.state.co.us/Tools/Structures/2008685", +"2008691","W0244 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0244","8734-R","12-10793-04","VALDEZ, JOE I.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","29","37.0 N","9.0 E","N","","","","","409678.0","4142052.0","37.420881","-106.020777","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008691", +"2008694","W0247 WELL NO 01","#64 - PARMA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","8632-R","04-8-1126","UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","23","38.0 N","8.0 E","N","","","","","405135.0","4154294.0","37.530753","-106.073688","12/02/2020 19:36","https://dwr.state.co.us/Tools/Structures/2008694", +"2008695","W0247 WELL NO 02","MONTE VISTA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","8633-R","20-05568-10","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (CROWDER, CHRIS)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","24","38.0 N","8.0 E","N","","","","","406579.0","4154224.0","37.530270","-106.057339","12/02/2020 19:37","https://dwr.state.co.us/Tools/Structures/2008695", +"2008696","W0247 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","2294-F","08230909","CLARK, PETE & LEAH","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","NW","SE","24","38.0 N","8.0 E","N","","","","","407364.0","4153503.0","37.523851","-106.048365","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008696", +"2008699","W0247 WELL NO 07","CHIOVITTI","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","4288-F","07-10-1026","CHIOVITTI, NICK; JOHNSON, SHANE R. & ASHLEY C.; JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","30","38.0 N","8.0 E","N","","","","","399241.0","4152015.0","37.509590","-106.140072","06/20/2022 20:18","https://dwr.state.co.us/Tools/Structures/2008699", +"2008701","W0247 WELL NO 10","GET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0247","38-WCB, 1765-R","06-8-3877","KOLB, BILL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SW","21","38.0 N","8.0 E","N","","","","","401710.0","4153201.0","37.520544","-106.112299","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008701", +"2008702","W0250 WELL NO 01","NEW COOPER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0250","20901-R, 20901-R-R","18-05373-08","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2018","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","3","36.0 N","8.0 E","N","","","","","403176.0","4139117.0","37.393773","-106.093862","01/31/2019 08:16","https://dwr.state.co.us/Tools/Structures/2008702", +"2008713","W0261 WELL NO 03","T4#6: #6 PIVOT WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","12556-R","GP13-4851-8","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","34","37.0 N","8.0 E","N","","","","","403974.0","4140737.0","37.408456","-106.085059","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008713", +"2008714","W0261 WELL NO 04","#7 HOUSE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0261","","5374152","HAMILTON, JENSON T.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","SE","34","37.0 N","8.0 E","N","","","","","404741.0","4140582.0","37.407138","-106.076373","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008714", +"2008755","W0284 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0284","1494-R","22060250","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","6","36.0 N","9.0 E","N","","","","","408832.0","4139015.0","37.393428","-106.029961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008755", +"2008759","W0287 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0287","10192-R, 20857-R","21-05092-08","CURTO, JOHN S. AND ROBBIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","35","37.0 N","9.0 E","N","","","","","415382.0","4139988.0","37.402818","-105.956085","09/17/2007 14:09","https://dwr.state.co.us/Tools/Structures/2008759", +"2008762","W0292 WELL NO 02","DAD'S WELL - DESOUCHET","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0292","10121-F, 10258-R","22-02530-08","TERRY & CONNIE BECKNER TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","13","36.0 N","8.0 E","N","","","","","406413.0","4135125.0","37.358128","-106.056793","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008762", +"2008785","W0300 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0300","20915-R","07-10-1038","VK FARMS LLC (DEHERRERA, KIRBY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","16","37.0 N","9.0 E","N","","","","","412213.0","4144659.0","37.444620","-105.992442","09/17/2007 15:37","https://dwr.state.co.us/Tools/Structures/2008785", +"2008831","W0323 WELL NO 02","#12 DIC, DIC #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0323","4523-R","11061481/11061583","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","NW","34","37.0 N","8.0 E","N","","","","","403581.0","4140741.0","37.408451","-106.089499","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008831", +"2008832","W0323 WELL NO 03","#14 DICAMILLO, DIC #2 PIVOT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0323","5384-F","02082215/02082239","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NW","SE","NE","33","37.0 N","8.0 E","N","","","","","402856.0","4141114.0","37.411737","-106.097739","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008832", +"2008850","W0325 WELL NO 02","HORNING NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0325","14703-R-R","0921315/012018003204","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","35","37.0 N","8.0 E","N","","","","","404824.0","4140820.0","37.409292","-106.075466","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008850", +"2008856","W0333 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0333","14221-R","06-6-2151","ALLEN, JEANNIE; ALLEN, RYAN B. & JEANNIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","9","37.0 N","11.0 E","N","","","","","430629.0","4147558.0","37.472313","-105.784542","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008856", +"2008857","W0333 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0333","14226-R","06-8-2798","ALLEN, JEANNIE; ALLEN, RYAN B. & JEANNIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","9","37.0 N","11.0 E","N","","","","","430622.0","4146885.0","37.466247","-105.784558","09/06/2007 17:07","https://dwr.state.co.us/Tools/Structures/2008857", +"2008858","W0333 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","03CW0008, 94CW0025, W0333","14234-R, 38639-F, 43006-F, 44066-F, 51288-F","646688","PETERSEN, LESLIE P. & DEBORA S. HANKINSON","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","5","37.0 N","11.0 E","N","","","","","429789.0","4147989.0","37.476134","-105.794082","04/12/2021 09:57","https://dwr.state.co.us/Tools/Structures/2008858", +"2008881","W0344 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0344","556-R","11061492/11061561","SINCLAIR, JOSH","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","15","37.0 N","9.0 E","N","","","","","413826.0","4144652.0","37.444709","-105.974208","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008881", +"2008970","W0391 WELL NO 02","WHITE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0391","5792-F","05-10-1540","JOHNSON, SHIRLEY E.; JOHNSON, STANTON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","21","37.0 N","8.0 E","N","","","","","402435.0","4143969.0","37.437422","-106.102873","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2008970", +"2008971","W0391 WELL NO 03","BRUNELLI'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0391","1605-R","07-8-1884","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","18","37.0 N","8.0 E","N","","","","","399268.0","4144794.0","37.444518","-106.138778","09/17/2013 13:09","https://dwr.state.co.us/Tools/Structures/2008971", +"2008976","W0395 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0395","20889-R","22-05486-10","MARQUEZ, MANUEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","36","37.0 N","9.0 E","N","","","","","417173.0","4140493.0","37.407531","-105.935908","09/06/2007 17:06","https://dwr.state.co.us/Tools/Structures/2008976", +"2009024","W0425 WELL NO 01","HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0058, W0425","13446-F","042013003351/06123309","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","14","37.0 N","8.0 E","N","","","","","404870.0","4145566.0","37.452068","-106.075558","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009024", +"2009081","W0448 WELL NO 01","ROLANDS OLD FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0448","1339-R-R","06-10-1108","FAUCETTE, PAUL","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","23","36.0 N","8.0 E","N","","","","","404763.0","4134334.0","37.350832","-106.075320","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009081", +"2009126","W0464 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0464","8265-R-R","21-04358","FAUCETTE, PAUL","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","22","36.0 N","8.0 E","N","","","","","403935.0","4133681.0","37.344861","-106.084583","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009126", +"2009128","W0464 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","21CW0004, W0464","8215-R","77-8-377","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","23","36.0 N","8.0 E","N","","","","","405750.0","4134219.0","37.349896","-106.064163","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009128", +"2009129","W0464 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0004, W0464","8216-R","10063586/10063667","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","23","36.0 N","8.0 E","N","","","","","405564.0","4134224.0","37.349922","-106.066264","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009129", +"2009160","W0481 WELL NO 01","GENE'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0481","20946-R","06-8-4920","HEERSINK, GENE; RUTGERS, JAMES","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","17","37.0 N","9.0 E","N","","","","","409715.0","4144778.0","37.445452","-106.020692","09/06/2007 17:04","https://dwr.state.co.us/Tools/Structures/2009160", +"2009161","W0482 WELL NO 02","ACROSS FROM EXPO","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0482","6336-R, 6336-R-R","24-05669-10","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","SW","18","36.0 N","9.0 E","N","","","","","408008.0","4135396.0","37.360730","-106.038819","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009161", +"2009162","W0482 WELL NO 03","#3-N-RES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0482","6335-R","10061969/10061988","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","18","36.0 N","9.0 E","N","","","","","408828.0","4135030.0","37.357513","-106.029515","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009162", +"2009225","W0516 WELL NO 01","WIDGER RD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0516","5221-F","062013001071/032014000164","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","31","37.0 N","8.0 E","N","","","","","399182.0","4141301.0","37.413029","-106.139273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009225", +"2009226","W0516 WELL NO 02","WIDGER RD 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0516","3736-F","012014002635","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","31","37.0 N","8.0 E","N","","","","","399147.0","4139997.0","37.401274","-106.139491","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009226", +"2009232","W0518 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0518","11678-F","11061486/11061578","HAUGEN, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","36","38.0 N","7.0 E","N","","","","","397640.0","4151183.0","37.501916","-106.158068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009232", +"2009239","W0525 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0525","10821-R, 10821-R-R","06-8-3863","ARCHULETA, MANUEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","13","37.0 N","7.0 E","N","","","","","397707.0","4144824.0","37.444617","-106.156426","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009239", +"2009240","W0525 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0525","10822-R, 10822-R-R","12061280/12204356","MILLER, MATTHEW","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","13","37.0 N","7.0 E","N","","","","","397551.0","4144824.0","37.444599","-106.158190","09/03/2021 17:16","https://dwr.state.co.us/Tools/Structures/2009240", +"2009258","W0540 WELL NO 01","MAIN WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0540","23645-, 61829-F","252400425","KELLOGG, DOUG; STOESSER, RICHARD","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","SW","16","37.0 N","10.0 E","N","","","","","421760.0","4144972.0","37.448298","-105.884558","12/26/2023 14:40","https://dwr.state.co.us/Tools/Structures/2009258", +"2009316","W0566 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","7328-R","06-8-4423","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NW","18","37.0 N","8.0 E","N","","","","","398452.0","4145972.0","37.455044","-106.148164","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009316", +"2009317","W0566 WELL NO 02","SO. HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","8606-R","06-8-3913","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","18","37.0 N","8.0 E","N","","","","","398465.0","4145563.0","37.451360","-106.147961","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009317", +"2009318","W0566 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","6184-R","06-10-1484","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","18","37.0 N","8.0 E","N","","","","","398469.0","4144918.0","37.445548","-106.147827","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009318", +"2009319","W0566 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0566","8602-R","12212680/12212632","BRUNELLI, BRYAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","17","37.0 N","8.0 E","N","","","","","400045.0","4145600.0","37.451866","-106.130105","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009319", +"2009321","W0575 WELL NO 02","#4-NORTH HIGHWAY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W0575","1687-R","12062567/12062738","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NW","SW","NW","19","36.0 N","9.0 E","N","","","","","408011.0","4134306.0","37.350907","-106.038650","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009321", +"2009339","W0586 WELL NO 02","EAST HUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0586","8710-R","12062578/05151683","RICKERT PROPERTIES, LLC; SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","29","37.0 N","10.0 E","N","","","","","419481.0","4141346.0","37.415423","-105.909925","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009339", +"2009390","W0624 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0624","2992-F","11061648","PROXIMITY MALT, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","NE","33","39.0 N","8.0 E","N","","","","","403319.0","4160724.0","37.588511","-106.095086","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009390", +"2009412","W0639 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0639","2825-F","12062586/12062685","SCHMIDT, LOUIS J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","23","37.0 N","8.0 E","N","","","","","405630.0","4143202.0","37.430841","-106.066665","01/26/2021 14:39","https://dwr.state.co.us/Tools/Structures/2009412", +"2009439","W0652 WELL NO 01","#8 SCHROEDER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0652","6035-R","02081367","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","6","36.0 N","9.0 E","N","","","","","408016.0","4138242.0","37.386380","-106.039082","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009439", +"2009447","W0653 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0653","5313-F","04061472/04061500","TEEM, ALBERT L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","21","38.0 N","10.0 E","N","","","","","421790.0","4153406.0","37.524313","-105.885116","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009447", +"2009484","W0688 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0688","20481-R","072019003872/10063641, 11061491/11061582","NIPPLE, FRED & DIANTHA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","19","37.0 N","10.0 E","N","","","","","418654.0","4142983.0","37.430104","-105.919450","01/12/2021 11:25","https://dwr.state.co.us/Tools/Structures/2009484", +"2009492","W0695 WELL NO 01","FIELD 11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0695","2282-F","05061442/07201700380","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","11","36.0 N","8.0 E","N","","","","","405189.0","4137517.0","37.379562","-106.070919","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009492", +"2009495","W0695 WELL NO 04","FIELD 12","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0695","2321-F","05061455/05061484","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","2","36.0 N","8.0 E","N","","","","","404803.0","4139109.0","37.393869","-106.075483","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009495", +"2009496","W0697 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0697","8642-R, 8642-R-R","09062740","MILLER, WILLIAM E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","3","36.0 N","8.0 E","N","","","","","404139.0","4139398.0","37.396406","-106.083021","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009496", +"2009516","W0710 WELL NO 01","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0710","5920-F","19-02851-12","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","25","36.0 N","8.0 E","N","","","","","407193.0","4132330.0","37.333017","-106.047637","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009516", +"2009558","W0735 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0007, W0735","1406-R, 90472-F","02081358","ALLEN, BLUE & JEANNIE; CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","4","36.0 N","9.0 E","N","","","","","411290.0","4139006.0","37.393585","-106.002195","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009558", +"2009561","W0735 WELL NO 05","CODY WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0735","11821-R","10061965/10242127","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","33","37.0 N","9.0 E","N","","","","","412105.0","4139766.0","37.400512","-105.993080","09/06/2007 16:53","https://dwr.state.co.us/Tools/Structures/2009561", +"2009612","W0766 WELL NO 01","TURNEY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","86CW0040, W0766","3775-F","06200677/05201404","BAR TWO BAR RANCH, LLC (JUSTIN ROGERS & RONALD CASH); ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SW","16","36.0 N","9.0 E","N","","","","","411270.0","4134960.0","37.357119","-106.001936","12/06/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009612", +"2009638","W0776 WELL NO 01","#1 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0776","5473-F, 66769-F","10063628/10063646","HAEDGE, HEATH & DANA; HEERSINK, DEREK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","15","37.0 N","8.0 E","N","","","","","404058.0","4145548.0","37.451822","-106.084735","12/02/2020 19:38","https://dwr.state.co.us/Tools/Structures/2009638", +"2009649","22CW0007 WELL NO 03 COMMERCIAL USE","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0007, W0787","54710-, 54710--A, 90473-F","19012635","CODY, D. WAYNE & SANDRA; COLORADO MALTING CO & COLORADO FARM BREWERY (CODY, WAYNE)","RGWCD SD6","10/31/2023","10/31/2025","3","20","ALAMOSA","","","","NW","NW","4","36.0 N","9.0 E","N","390","W","180","N","411385.3","4139711.1","37.399948","-106.001207","02/06/2026 12:59","https://dwr.state.co.us/Tools/Structures/2009649", +"2009658","W0794 WELL NO 01","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0794","10201-R","11602","SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","32","37.0 N","10.0 E","N","","","","","419857.0","4139743.0","37.401008","-105.905503","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009658", +"2009669","W0801 WELL NO 01","LARIAT 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0801","12354-F, 89123-F","GP13-2394-8","PAULSON, BRYAN","RGWCD SD6","10/31/2013","10/31/2025","3","20","RIO GRANDE","","","","SW","NE","4","38.0 N","7.0 E","N","","","","","393243.0","4158922.0","37.571158","-106.208929","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009669", +"2009670","W804 WELL NO. 1","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W0804","2175-F","07-10-1023","TERRY & CONNIE BECKNER TRUST","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","12","36.0 N","8.0 E","N","","","","","407187.0","4136653.0","37.371977","-106.048246","03/25/2009 16:59","https://dwr.state.co.us/Tools/Structures/2009670", +"2009736","W0837 WELL NO 03","#18 & #19 TALL BARN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0837","1750-R","GP06-10-1186","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","29","37.0 N","8.0 E","N","","","","","400798.0","4141579.0","37.415709","-106.121053","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009736", +"2009746","W0844 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0844","10545-R","07-8-1074","HASTON, LARRY & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","16","36.0 N","9.0 E","N","","","","","411268.0","4135339.0","37.360534","-106.002004","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009746", +"2009774","W0856 WELL NO 01","SHADY CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0856","3088-F","11061696/06201506309","NISSLEY, IVAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","26","37.0 N","8.0 E","N","","","","","405656.0","4142372.0","37.423364","-106.066265","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009774", +"2009809","W0873 WELL NO 01","PORTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0873","13576-R","072017003068/042017000955","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","25","37.0 N","9.0 E","N","","","","","416239.0","4141402.0","37.415640","-105.946564","09/06/2007 16:51","https://dwr.state.co.us/Tools/Structures/2009809", +"2009810","W0873 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0873","13577-R","05061441/05061490","WELCH, RAY C. & VICKIE A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NW","30","37.0 N","10.0 E","N","","","","","418043.0","4142545.0","37.426103","-105.926307","09/06/2007 16:51","https://dwr.state.co.us/Tools/Structures/2009810", +"2009919","W0924 WELL NO 01","NORTH RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0924","6034-R, 6034-R-R, 6034-R-R","04210426","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","1","36.0 N","8.0 E","N","","","","","406405.0","4139154.0","37.394438","-106.057393","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009919", +"2009920","W0924 WELL NO 02","#2 FORD SMALL SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0924","34063-F","06-8-3918","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","1","36.0 N","8.0 E","N","","","","","406390.0","4139106.0","37.394004","-106.057557","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009920", +"2009983","W0978 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","1729-R","07-4-1014","MARTIN, JANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NE","NW","5","37.0 N","10.0 E","N","","","","","420047.0","4149198.0","37.486239","-105.904381","09/17/2007 14:00","https://dwr.state.co.us/Tools/Structures/2009983", +"2009984","W0978 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","2745-F","1703100409971007/13-91357, 173100109941000/13-91353","OWENS, LARRY & VELLA; OWENS, LOHN & VELLA; VILLA MALL CONDO ASSOCIATION (BURT, ERIC)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SE","5","37.0 N","10.0 E","N","","","","","420270.0","4148407.0","37.479129","-105.901774","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009984", +"2009985","W0978 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0978","3380-F","15-13609-4","CARROLL PROPERTIES LLC; MARTIN, JANE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","5","37.0 N","10.0 E","N","","","","","419763.0","4148671.0","37.481465","-105.907536","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2009985", +"2010069","W1030 WELL NO 02","GRETT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1030","10420-R","06-10-1483","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","19","37.0 N","8.0 E","N","","","","","399216.0","4143972.0","37.437104","-106.139254","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010069", +"2010070","W1031 WELL NO 01","CORNER WELL BOWEN CHURCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1031","7092-R-R","06-8-4337","MULLETT, ALVIN RAY & FREDA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","21","37.0 N","8.0 E","N","","","","","401624.0","4143186.0","37.430280","-106.111934","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010070", +"2010091","W1042 WELL NO 01 NELSON","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","99CW0051, W1042","11296-F, 50480-F, 90449-F","042014001716","MT VALLEY FARMS (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","6","36.0 N","10.0 E","N","","","","","417778.0","4139513.0","37.398753","-105.928964","12/06/2002 00:00","https://dwr.state.co.us/Tools/Structures/2010091", +"2010097","W1043 WELL NO 03","#11","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1043","7734-F","12062573/12062653","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NE","25","36.0 N","8.0 E","N","","","","","407213.0","4132596.0","37.335416","-106.047444","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010097", +"2010104","W1045 WELL NO 02","#8","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, 22CW3034, W1045","1063-R","12062627/12062654","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","SW","19","36.0 N","9.0 E","N","","","","","408820.0","4133363.0","37.342488","-106.029401","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010104", +"2010105","W1045 WELL NO 03","#9","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW3009, W1045","1064-R, 81366-F","06125218","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NE","30","36.0 N","9.0 E","N","","","","","409221.0","4132703.0","37.336579","-106.024793","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010105", +"2010128","W1068 WELL NO 01","GOLDEN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1068","5491-F","18-01238-08","ROCKY MOUNTAIN HOME BUILDERS LLC (YODER, MATTHEW T.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","12","37.0 N","8.0 E","N","","","","","406505.0","4147126.0","37.466294","-106.057274","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010128", +"2010160","W1085 WELL NO 03","DUGAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","23CW3004, W1085","15518-R, 90544-F","112018004241","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","31","37.0 N","9.0 E","N","","","","","408871.0","4140700.0","37.408617","-106.029729","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010160", +"2010176","W1094 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1094","12263-F","19-01257-08","GUNBARREL FARMS LLC (BROWN, ANDREW); GUNBARREL FARMS, LLC; TIMMINS, NATE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","11","38.0 N","10.0 E","N","","","","","424997.0","4156649.0","37.553807","-105.849157","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010176", +"2010184","W1100 WELL NO 04","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54600-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1980","W","800","N","415149.6","4139439.8","37.397858","-105.958643","01/07/2025 09:53","https://dwr.state.co.us/Tools/Structures/2010184", +"2010185","W1100 WELL NO 05","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54599-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1980","W","1060","N","415148.1","4139360.5","37.397146","-105.958657","01/10/2025 12:21","https://dwr.state.co.us/Tools/Structures/2010185", +"2010186","W1100 WELL NO 06","","Active structure but diversion records are not maintained (U)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1100","54598-","","HOCHSTETLER, LEVI","RGWCD SD6","","","3","20","ALAMOSA","","","","NE","NW","2","36.0 N","9.0 E","N","1800","W","1200","N","415092.4","4139318.5","37.396762","-105.959285","01/10/2025 12:22","https://dwr.state.co.us/Tools/Structures/2010186", +"2010204","W1115 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1115","3035-F","08051629","ARCHER, RODNEY; MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","30","37.0 N","9.0 E","N","","","","","408842.0","4142317.0","37.423187","-106.030256","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010204", +"2010366","W1235 WELL NO 01","ARTESIAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1235","12896-R","09-03524-03","BURNS, WILLIAM A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NE","2","37.0 N","9.0 E","N","","","","","415339.0","4149363.0","37.487306","-105.957647","09/17/2007 13:56","https://dwr.state.co.us/Tools/Structures/2010366", +"2010420","W1263 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1263","6265-F","15-00529-4, GP09-1718-8","SKY HIGH STATION, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","SW","32","39.0 N","9.0 E","N","","","","","409873.0","4159849.0","37.581291","-106.020754","05/24/2005 09:57","https://dwr.state.co.us/Tools/Structures/2010420", +"2010441","W1269 WELL NO 02","B COLEMAN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1269","4865-F","18-05410-04","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","NW","SW","19","36.0 N","9.0 E","N","","","","","408015.0","4133773.0","37.346104","-106.038538","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010441", +"2010465","W1287 WELL NO 01","PVC PIPE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1287","11073-R","06-10-1400","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NE","SW","26","36.0 N","8.0 E","N","","","","","405561.0","4132384.0","37.333339","-106.066063","08/02/2021 17:01","https://dwr.state.co.us/Tools/Structures/2010465", +"2010478","W1294 WELL NO 01","PRICE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1294","10893-F","A5009E16000","ALAMOSA, CITY OF; SANCHEZ, ROY","RGWCD SD6","10/31/2005","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","2","37.0 N","10.0 E","N","","","","","424282.0","4147757.0","37.473609","-105.856335","12/02/2020 19:39","https://dwr.state.co.us/Tools/Structures/2010478", +"2010479","W1295 WELL NO 01","WEAVER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1295","1555-R","12062508/12062772, 12062510/12062767-PIVOT","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","32","37.0 N","9.0 E","N","","","","","410513.0","4139981.0","37.402297","-106.011090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010479", +"2010484","W1298 WELL NO 01","HENRY ROAD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1298","8595-R","GP12-6270-10","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","5","36.0 N","10.0 E","N","","","","","420135.0","4138870.0","37.393164","-105.902268","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010484", +"2010494","W1303 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1303","48655-F","06-09313-04","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); ELEVEN SOUTH LLC (MARTINEZ, JEFF)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","33","37.0 N","10.0 E","N","","","","","421818.0","4140511.0","37.408097","-105.883430","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010494", +"2010496","W1303 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1303","57582-","17-00121-03","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); ELEVEN SOUTH LLC (MARTINEZ, JEFF)","RGWCD SD6","10/31/2017","10/31/2025","3","20","ALAMOSA","","","","SE","NW","33","37.0 N","10.0 E","N","","","","","421800.0","4140754.0","37.410286","-105.883659","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010496", +"2010533","W1334 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1334","","10262539/12062745","FRANCIS, ALBERT & KATRINA","RGWCD SD6","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","SW","NW","NE","27","37.0 N","8.0 E","N","","","","","404013.0","4142755.0","37.426646","-106.084880","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010533", +"2010536","W1336 WELL NO 01","SW OF FARM HOUSE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1336","1844-R, 1844-R-R","02-6-1423","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","35","37.0 N","8.0 E","N","","","","","404831.0","4139933.0","37.401298","-106.075273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010536", +"2010537","W1336 WELL NO 02","WEST RES WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","12555-R","03062355/03062381","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","33","37.0 N","8.0 E","N","","","","","401561.0","4139987.0","37.401443","-106.112220","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010537", +"2010538","W1336 WELL NO 04","EAST RES. WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1336","11656-F","GP-11-2499-12","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","33","37.0 N","8.0 E","N","","","","","401674.0","4140096.0","37.402438","-106.110958","09/06/2007 17:30","https://dwr.state.co.us/Tools/Structures/2010538", +"2010540","W1336 WELL NO 06","BONTRAGER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1336","12709-R","06-8-4959","RIDDICK, JOHN L. & DONNA J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","35","37.0 N","8.0 E","N","","","","","405610.0","4139912.0","37.401189","-106.066470","02/06/2026 13:00","https://dwr.state.co.us/Tools/Structures/2010540", +"2010585","W1363 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1363","10119-F","07-10-1198","SCHMIDT, LOUIS J.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NE","23","37.0 N","8.0 E","N","","","","","406048.0","4143932.0","37.437463","-106.062034","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010585", +"2010653","W1392 WELL NO 01","WEST HUNTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1392","6914-R","10061949/10062045","RICKERT PROPERTIES, LLC; SUTAK, MARK; SUTAK, TANYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SW","30","37.0 N","10.0 E","N","","","","","417874.0","4141409.0","37.415849","-105.928090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010653", +"2010706","W1421 WELL NO 01","ALFALFA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW0005, W1421","11523-R, 11523-R-R","GP12-3628-8","CROUSE, KEN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NE","3","36.0 N","9.0 E","N","","","","","413745.0","4138962.0","37.393420","-105.974459","09/21/2016 13:23","https://dwr.state.co.us/Tools/Structures/2010706", +"2010736","W1447 WELL NO 01","WEST CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1447","13314-R","6910634","CHESLOCK, LANCE","RGWCD SD6","10/31/2010","10/31/2025","3","20","ALAMOSA","","","","SW","SE","29","37.0 N","10.0 E","N","","","","","420532.0","4141316.0","37.415243","-105.898046","07/31/2014 09:07","https://dwr.state.co.us/Tools/Structures/2010736", +"2010737","W1447 WELL NO 02","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1447","13313-R","6915105","SKINNER, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SE","SE","29","37.0 N","10.0 E","N","","","","","420902.0","4141299.0","37.415122","-105.893864","07/01/2013 09:23","https://dwr.state.co.us/Tools/Structures/2010737", +"2010773","W1456 WELL NO 01","NATIVE AQUATIC SPECIES RESTORATION FACILITY #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","2292-F-R","24-06940","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","1","37.0 N","9.0 E","N","","","","","416378.0","4148108.0","37.476090","-105.945754","12/02/2020 19:41","https://dwr.state.co.us/Tools/Structures/2010773", +"2010774","W1456 WELL NO 02","NATIVE AQUATIC SPECIES RESTORATION FACILITY #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","14051-R, 59362-F","EASTECH NO 2-403033","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","1","37.0 N","9.0 E","N","","","","","416147.0","4148190.0","37.476808","-105.948375","12/02/2020 19:42","https://dwr.state.co.us/Tools/Structures/2010774", +"2010775","W1456 WELL NO 03","NATIVE AQUATIC SPECIES RESTORATION FACILITY #3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1456","58894-F, 14052-R-R","19-06559-08","COLORADO PARKS AND WILDLIFE; COLORADO PARKS AND WILDLIFE (UNTERREINER, RYAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","1","37.0 N","9.0 E","N","","","","","416546.0","4147848.0","37.473762","-105.943824","12/02/2020 19:43","https://dwr.state.co.us/Tools/Structures/2010775", +"2010858","W1481 WELL NO 01","T4 #2: W OF TED'S WAVERLY","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1481","4419-R","06-10-1185","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SE","30","37.0 N","8.0 E","N","","","","","399988.0","4141569.0","37.415532","-106.130203","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010858", +"2010864","W1485 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","21011-R","10063530/10063715","UCU RANCH LLC (CLAUNCH, BILLY D.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","28","37.0 N","8.0 E","N","","","","","402394.0","4142365.0","37.422962","-106.103124","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010864", +"2010866","W1485 WELL NO 04","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","4435-R","","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2019","3","20","CONEJOS","","","","SE","SW","10","36.0 N","8.0 E","N","","","","","403953.0","4136670.0","37.371801","-106.084767","12/02/2020 19:43","https://dwr.state.co.us/Tools/Structures/2010866", +"2010867","W1485 WELL NO 05","#2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","4436-R","01201386/01201345","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SE","10","36.0 N","8.0 E","N","","","","","403967.0","4136677.0","37.371865","-106.084610","12/02/2020 19:44","https://dwr.state.co.us/Tools/Structures/2010867", +"2010868","W1485 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1485","1709-R, 1709-R-R, 1709-R-R, 1709-R-R","15-08572-6","CLAUNCH, BUCKY & CATHY","RGWCD SD6","10/31/2015","10/31/2025","3","20","CONEJOS","","","NW","NE","SE","3","36.0 N","8.0 E","N","","","","","404458.0","4138877.0","37.391743","-106.079350","08/17/2015 13:43","https://dwr.state.co.us/Tools/Structures/2010868", +"2010869","W1485 WELL NO 07","#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1485","11069-F","062015000846/12212624","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SE","SW","SW","3","36.0 N","8.0 E","N","","","","","403512.0","4138302.0","37.386463","-106.089960","12/02/2020 19:45","https://dwr.state.co.us/Tools/Structures/2010869", +"2010870","W1485 WELL NO 08","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1485","1708-R-R","22-06219-06","CLAUNCH, BUCKY & CATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","2","36.0 N","8.0 E","N","","","","","404802.0","4138378.0","37.387281","-106.075400","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010870", +"2010907","W1532 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1532","20244-R","07-8-1468","YUND, CHEB & SONYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","30","37.0 N","8.0 E","N","","","","","399185.0","4142373.0","37.422690","-106.139386","12/02/2020 19:46","https://dwr.state.co.us/Tools/Structures/2010907", +"2010908","W1532 WELL NO 02","CHURCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1532","7071-R","09060680/10061171","YUND, CHEB & SONYA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","29","37.0 N","8.0 E","N","","","","","400812.0","4142383.0","37.422956","-106.121003","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010908", +"2010921","W1542 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1542","8723-R","05083044/12062775","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","30","37.0 N","9.0 E","N","","","","","408850.0","4141466.0","37.415519","-106.030060","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010921", +"2010928","W1544 WELL NO 01","MAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1544","75721-F","25000634","HP FUTURES, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SE","SW","5","37.0 N","11.0 E","N","","","","","429424.0","4147841.0","37.474773","-105.798195","01/31/2024 13:37","https://dwr.state.co.us/Tools/Structures/2010928", +"2010984","W1583 WELL NO 02","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1583","9029-F","11061477/11061586","BUCK MATTHEWS FAMILY LLLP.; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","NW","3","38.0 N","7.0 E","N","","","","","393860.0","4159298.0","37.574618","-106.201998","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2010984", +"2011034","W1608 WELL NO 01","HUNTER Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1608","20650-R","10063608/10063640","BRADY, JOHN AND TRENNA; BRADY, STEVE; SCHAEFER RANCH, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NE","16","37.0 N","8.0 E","N","","","","","402420.0","4145573.0","37.451876","-106.103255","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011034", +"2011055","W1622 WELL NO 01","PAINTER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1622","20048-R, 20048-R-R","05060244/10190349","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","NW","5","36.0 N","9.0 E","N","","","","","409783.0","4139233.0","37.395485","-106.019246","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011055", +"2011058","W1622 WELL NO 4","BLUE'S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1622","809-R","10063601/10063671-100493","ALLEN, BLUE & JEANNIE; CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","33","37.0 N","9.0 E","N","","","","","411280.0","4139805.0","37.400785","-106.002404","11/14/2013 10:44","https://dwr.state.co.us/Tools/Structures/2011058", +"2011061","W1622 WELL NO 07","VANDER EYK #5 WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","12CW0042, W1622","10204-R","06-8-3982","DECLERCK FARMS; DECLERCK, TRAVIS; VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","6","36.0 N","9.0 E","N","","","","","408835.0","4138241.0","37.386452","-106.029832","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011061", +"2011083","W1628 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","W1628","4608-F, 4608-F-R","6980608","PS CUBE LLC (SPATEL, PRAYA)","RGWCD SD6","10/31/2007","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","34","39.0 N","7.0 E","N","","","","","394061.0","4160602.0","37.586392","-106.199911","01/27/2025 13:45","https://dwr.state.co.us/Tools/Structures/2011083", +"2011085","W1628 WELL NO 03","MOTEL WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1628","57490-, 59973-F, 88793-F","6980608","PS CUBE LLC (SPATEL, PRAYA)","RGWCD SD6","10/31/2007","10/31/2025","3","20","RIO GRANDE","","","SW","NE","NW","34","39.0 N","7.0 E","N","","","","","394097.0","4160635.0","37.586694","-106.199508","10/29/2025 10:27","https://dwr.state.co.us/Tools/Structures/2011085", +"2011114","W1652 WELL NO 01","LAZY U","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1652","5154-F","042013003352/06123300","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","NE","NE","NW","7","36.0 N","8.0 E","N","","","","","399041.0","4138338.0","37.386311","-106.140462","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011114", +"2011149","W1677 WELL NO 01","BUS. NAME WAS SCHALL IRON WORKS INC.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1677","9475-F","20801043","DC LAND & HOLDINGS, LLC (TOEWS, DAVID W.); TOEWS, DAVID W.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","25","39.0 N","7.0 E","N","","","","","398450.0","4160896.0","37.589536","-106.150250","12/02/2020 19:47","https://dwr.state.co.us/Tools/Structures/2011149", +"2011165","W1682 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","10CW0029, W1682","10547-R, 90483-F","02081334/12212612","AK FRONTIER FARMS LLC (GESINK, KENT N.); SKADBERG, ADAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","3","36.0 N","9.0 E","N","","","","","413330.0","4138996.0","37.393688","-105.979151","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011165", +"2011204","W1707 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1707","11933-R","11061396","COOMBS, JASON","RGWCD SD6","10/31/2012","10/31/2025","3","20","CONEJOS","","","","SW","NW","25","36.0 N","8.0 E","N","","","","","406395.0","4132857.0","37.337687","-106.056710","12/02/2020 19:48","https://dwr.state.co.us/Tools/Structures/2011204", +"2011205","W1708 WELL NO 01","TRAILER PARK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1708","29070-, 68698-F","6788523","MANAGER, JOSH; VALLEY MOBILE HOME LLC (MUNOZ, MEMBERS, ELEAZAR & HULDA)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SW","26","38.0 N","10.0 E","N","","","","","424237.0","4151110.0","37.503824","-105.857189","01/31/2024 13:58","https://dwr.state.co.us/Tools/Structures/2011205", +"2011225","W1712 WELL NO 03","IRRIGATION WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W1712","15936-F","8940628","STRANG, JIM AND LISA","RGWCD SD6","10/31/2018","10/31/2025","3","20","ALAMOSA","","","","SW","NW","2","37.0 N","11.0 E","N","","","","","433925.0","4148818.0","37.483911","-105.747383","02/06/2026 13:02","https://dwr.state.co.us/Tools/Structures/2011225", +"2011229","W1715 WELL NO 02","CROWTHER SMALL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW3015, W1715","6325-R-R, 6325-R-R","06200649","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","18","36.0 N","9.0 E","N","","","","","408020.0","4135807.0","37.364436","-106.038734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011229", +"2011360","W1802 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1802","5872-F","GP12-5224-10","ANDREWS, COLBY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","28","37.0 N","9.0 E","N","","","","","411490.0","4141704.0","37.417920","-106.000260","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011360", +"2011361","W1802 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1802","11097-R","24-02112-08","ANDREWS, COLBY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","28","37.0 N","9.0 E","N","","","","","411495.0","4141732.0","37.418173","-106.000206","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011361", +"2011396","W1817 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1817","13780-R, 13780-R-R, 13780-R-R","06-10-1485","CHRISTENSEN, BRYAN & VIRGINIA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","19","37.0 N","8.0 E","N","","","","","398501.0","4143971.0","37.437017","-106.147335","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011396", +"2011432","W1831 WELL NO 02","CHURCH QTR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1831","7232-R","05062255/05062198","BRADY, MICHAEL; BRADY, MICHAEL KIRK & ALESHA ANN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","28","37.0 N","8.0 E","N","","","","","401642.0","4142370.0","37.422928","-106.111622","01/30/2020 11:42","https://dwr.state.co.us/Tools/Structures/2011432", +"2011435","W1831 WELL NO 07","10S WELL (BILL'S PLACE)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1831","14058-R","06-10-1495","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","20","37.0 N","8.0 E","N","","","","","400805.0","4143183.0","37.430165","-106.121189","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011435", +"2011452","W1832 WELL NO 01","HOWARD'S LOWER HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1832","3703-F","10190403/08062028","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","20","37.0 N","8.0 E","N","","","","","400010.0","4143211.0","37.430332","-106.130177","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011452", +"2011453","W1832 WELL NO 02","HOWARD'S UPPER CATERPILLAR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1832","16244-R","06-10-1548","JOHNSON, SHIRLEY E.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","SW","30","37.0 N","8.0 E","N","","","","","399170.0","4141585.0","37.415587","-106.139448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011453", +"2011545","W1866 WELL NO 01","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1866","20335-R","10242131","FRANSEN, NATHAN D.; VELASQUEZ, JOHN (JUAN)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","17","36.0 N","9.0 E","N","","","","","410452.0","4134938.0","37.356842","-106.011169","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011545", +"2011566","W1888 WELL NO 01","GUNBARREL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1888","1471-R","072014000387/072014001467","CALDON, CASEY F.; CALDON, CASEY F. & SHARI K.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","13","37.0 N","7.0 E","N","","","","","397638.0","4145634.0","37.451909","-106.157319","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011566", +"2011684","W1944 WELL NO 02","3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W1944","8897-F","05-10-1555","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","NW","10","36.0 N","8.0 E","N","","","","","403164.0","4137493.0","37.379136","-106.093785","12/02/2020 19:49","https://dwr.state.co.us/Tools/Structures/2011684", +"2011685","W1944 WELL NO 03","#1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1944","5873-F","052018002647/05201408","QUARTER CIRCLE A FARMS, LLC (CLAUNCH, GERRIT J.)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","10","36.0 N","8.0 E","N","","","","","403154.0","4136708.0","37.372060","-106.093795","12/02/2020 19:50","https://dwr.state.co.us/Tools/Structures/2011685", +"2011687","W1951 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1951","12785-R","07-02393-04","ZIMMERMAN, TREVER","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","NW","NE","10","37.0 N","11.0 E","N","","","","","433099.0","4147360.0","37.470711","-105.756592","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011687", +"2011741","W1976 WELL NO 05","MALOUFF WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0011, W1976","10421-F","24030389, GP 07-10-1032","U.S FISH AND WILDLIFE SERVICE (CARUSO, BRIAN); UNITED STATES FISH & WILDLIFE SERVICE (SHAFFER, CHRISTOPHER)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NW","NW","32","38.0 N","9.0 E","N","","","","","409819.0","4150898.0","37.500617","-106.020266","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011741", +"2011901","W2068 WELL NO 01","LIBRARY WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2068","","16-11947","ADAMS STATE UNIVERSITY; RUYBAL, KEVIN","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SE","SW","SE","4","37.0 N","10.0 E","N","","","","","421989.0","4147763.0","37.473472","-105.882265","06/20/2022 20:22","https://dwr.state.co.us/Tools/Structures/2011901", +"2011904","W2070 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2070","22468-F-R","07-6-1094, 3758444","BILLINGS, JAMES; PRICE, WADE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","28","38.0 N","10.0 E","N","","","","","421806.0","4152148.0","37.512977","-105.884801","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011904", +"2011907","W2073 WELL NO 06","MARTIN N. RES.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2073","14881-R, 20749-T","06-8-3915","CALDON, CASEY F.; PERRY, THOMAS ROGER & MARILYN W.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SW","11","38.0 N","8.0 E","N","","","","","405678.0","4156196.0","37.547950","-106.067788","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011907", +"2011909","W2076 WELL NO 02","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2076","5545-F","6102949","CENTURY PROPERTY MANAGEMENT (MCCARROLL, DARLENE); LORNA JEANNE PRICE REVOCABLE TRUST; PRICE, LEO O.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NW","NW","7","37.0 N","11.0 E","N","","","","","427631.0","4147595.0","37.472417","-105.818448","01/31/2024 16:12","https://dwr.state.co.us/Tools/Structures/2011909", +"2011973","W2128 WELL NO 01","ESPERANZA #4 RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW3003, W2128","14445-R","12062619/12212621","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SE","NW","19","36.0 N","9.0 E","N","","","","","408817.0","4134176.0","37.349815","-106.029535","09/17/2007 14:50","https://dwr.state.co.us/Tools/Structures/2011973", +"2011987","W2138 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2138","3760-F","GP15-07501-8","OLD WESTERN HERITAGE LLC ","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NW","SW","11","38.0 N","7.0 E","N","","","","","395479.0","4156569.0","37.550210","-106.183278","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2011987", +"2012068","W2206 WELL NO 04","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2206","14037-R","03073266/04070335","BUSH, MICHAEL; SPLASHLAND LLC (POLKOWSKE, LEROY)","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","34","38.0 N","10.0 E","N","","","","","424004.0","4149454.0","37.488880","-105.859654","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012068", +"2012069","W2206 WELL NO 05","LLOYD JONES","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2206","14038-R","10060947/05063028","JONES JR, LLOYD E.; JONES, MARGARET OR BUTCH","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SE","34","38.0 N","10.0 E","N","","","","","424004.0","4149427.0","37.488637","-105.859651","09/17/2007 14:50","https://dwr.state.co.us/Tools/Structures/2012069", +"2012081","W2223 WELL NO 05","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2223","13581-F","5374184","CARPENTER, KEVIN; KB PROPERTIES, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","NE","NE","10","37.0 N","10.0 E","N","","","","","423915.0","4147592.0","37.472091","-105.860468","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012081", +"2012088","W2227 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2227","49710-F","5524111","BROADWAY SERVICE","RGWCD SD6","10/31/2009","10/31/2024","3","20","ALAMOSA","","","NE","NE","NE","10","37.0 N","10.0 E","N","","","","","424126.0","4147521.0","37.471469","-105.858075","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012088", +"2012096","W2243 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2243","13903-R","07-12-1019","MULLETT, ALVIN RAY & FREDA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","21","37.0 N","8.0 E","N","","","","","402425.0","4143162.0","37.430148","-106.102879","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012096", +"2012118","W2266 WELL NO 01","RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2266","11197-R","15-18139-10","SINCLAIR, MATT & EVA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","31","37.0 N","10.0 E","N","","","","","417845.0","4140544.0","37.408051","-105.928322","01/19/2017 14:43","https://dwr.state.co.us/Tools/Structures/2012118", +"2012244","W2340 WELL NO 01","MOSE Q","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2340","11618-R","12062606/12062697","BRADY, JOHN AND TRENNA; BRADY, STEVE; THE L&P, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","NW","22","37.0 N","8.0 E","N","","","","","403206.0","4144181.0","37.439414","-106.094187","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012244", +"2012372","W2431 WELL NO 11","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","21CW3023, W2431","89487-F","22-023993","PITARRESI, BARRY V. & PATRICIA M.","RGWCD SD6","10/31/2024","10/31/2025","3","20","ALAMOSA","","","NW","SW","NW","10","38.0 N","11.0 E","N","","","","","432302.0","4156746.0","37.555247","-105.766470","02/06/2026 13:04","https://dwr.state.co.us/Tools/Structures/2012372", +"2012472","W2481 WELL NO 03","DAD'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2481","13194-F","09060704/09060741","CROWDER, HOWARD L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NW","SW","SW","27","37.0 N","9.0 E","N","","","","","412950.0","4141681.0","37.417851","-105.983760","09/17/2007 14:48","https://dwr.state.co.us/Tools/Structures/2012472", +"2012503","W2516 WELL NO 02","BUNCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2516","","07-7679-3","BUNCH, GLEN","RGWCD SD6","10/31/2009","10/31/2024","3","20","ALAMOSA","","","","NE","SE","14","37.0 N","10.0 E","N","","","","","425524.0","4145033.0","37.449159","-105.842015","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012503", +"2012513","W2522 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2522","","18 007863-NL, 19-012664","COLORADO GATORS; YOUNG, ERWIN & LYNNE","RGWCD SD6","10/31/2019","10/31/2025","3","20","ALAMOSA","","","","SW","SE","16","37.0 N","10.0 E","N","","","","","421897.0","4144817.0","37.446913","-105.882993","12/26/2023 14:43","https://dwr.state.co.us/Tools/Structures/2012513", +"2012535","W2537 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","12CW0017, 21CW3023, W2537","5426-F","14-15552-8","COBLENTZ, DAVID R. LEAH L.; FRANSEN, NATHAN D.","RGWCD SD6","10/31/2014","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","31","37.0 N","8.0 E","N","","","","","398430.0","4140005.0","37.401268","-106.147591","09/03/2021 17:21","https://dwr.state.co.us/Tools/Structures/2012535", +"2012551","W2542 WELL NO 01","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2542","8445-R-R","12061202/12061401","GROWER SHIPPER POTATO COMPANY; LOUNSBURY, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","NW","NE","36","39.0 N","7.0 E","N","","","","","398109.0","4160581.0","37.586660","-106.154068","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012551", +"2012555","W2544 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","5270-","23030700","COBLENTZ, MELVIN & MARY","RGWCD SD6","10/31/2025","10/31/2025","3","20","RIO GRANDE","","","","NW","NW","31","37.0 N","8.0 E","N","600","W","200","N","398552.0","4141506.0","37.414808","-106.146419","02/06/2026 13:05","https://dwr.state.co.us/Tools/Structures/2012555", +"2012556","W2544 WELL NO 03","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2544","11119-R","07-8-1196","COBLENTZ, BENJAMIN A. & LAURA A.; YUTZY, GLENN D. & GENEVA F.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SW","SW","30","37.0 N","8.0 E","N","","","","","398391.0","4141603.0","37.415664","-106.148252","08/02/2021 16:59","https://dwr.state.co.us/Tools/Structures/2012556", +"2012562","W2545 WELL NO 06","HAGEDORN WEST S WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2545","7608-F","12230560/10062006","JOHNSON, SHIRLEY E.; JOHNSON, STANTON W. & JAELYN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SW","4","38.0 N","8.0 E","N","","","","","401778.0","4158013.0","37.563917","-106.112174","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012562", +"2012586","W2549 WELL NO 02","FISH FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2549","53198-F","012018003201/12061316","HART, JAMES N. & MARIA L.","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NE","SE","24","39.0 N","7.0 E","N","","","","","398308.0","4163155.0","37.609878","-106.152172","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012586", +"2012639","W2564 WELL NO 01","SHOWNS","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2564","5950-R","07-8-1421","SCHAEFER, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","NE","34","39.0 N","7.0 E","N","","","","","394494.0","4160510.0","37.585613","-106.194994","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012639", +"2012662","W2587 WELL NO 01","SOUTH HEERSINK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0058, W2587","2826-F","08-10-1453","4 MILE PROPERTIES, LLC (WIESCAMP, CODY); WIESCAMP, CODY & TEDI","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SW","14","37.0 N","8.0 E","N","","","","","404861.0","4144784.0","37.445020","-106.075559","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012662", +"2012663","W2587 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2587","2059-F","14-08172","JD SCHMIDT & CARLA M. YOKLEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","SW","SE","14","37.0 N","8.0 E","N","","","","","405656.0","4144746.0","37.444759","-106.066568","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012663", +"2012685","W2592 WELL NO 01","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","6536-R","95-8-1875N","BUCK MATTHEWS FAMILY LLLP.; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","SE","SW","3","38.0 N","7.0 E","N","","","","","394308.0","4158059.0","37.563504","-106.196747","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012685", +"2012686","W2592 WELL NO 02","NOFFSKER PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","6537-R","02081353","JOHNSON, SHANE R. & ASHLEY C.; NOFFSKER, JOHN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SW","NW","SE","15","38.0 N","7.0 E","N","","","","","394481.0","4154982.0","37.535795","-106.194346","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012686", +"2012687","W2592 WELL NO 03","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W2592","10478-F","052017001429/07201500238","BUCK MATTHEWS FAMILY LLLP.; MATHEWS, MIKE; MATTHEWS, STEVE & KATHY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NW","10","38.0 N","7.0 E","N","","","","","394353.0","4157570.0","37.559103","-106.196167","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2012687", +"2013136","W3106 WELL NO 01","HOWARDS #1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3106","7017-R, 7017-R-R","05060253/05060276","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","SW","20","37.0 N","9.0 E","N","","","","","410083.0","4143444.0","37.433466","-106.016370","09/17/2007 14:46","https://dwr.state.co.us/Tools/Structures/2013136", +"2013139","W3106 WELL NO 04","HOWARDS #2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3106","7020-R","04062008/04062030","VIGIL JR, ALFONSO; VIGIL, ALFONSO F. AND LORETTA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","SE","19","37.0 N","9.0 E","N","","","","","408942.0","4143140.0","37.430614","-106.029227","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013139", +"2013257","W3252 WELL NO 02","MVC MAIN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3252","","8109801","MONTE VISTA COOP; YARBROUGH, DEBRA","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","NE","5","38.0 N","8.0 E","N","","","","","401586.0","4158555.0","37.568781","-106.114420","02/05/2024 10:34","https://dwr.state.co.us/Tools/Structures/2013257", +"2013409","W3487 WELL NO 04R","CARMEL 1 (NE 120)","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","W3487","6585-R-R","10062750/10062844","PAINE, JAMES; PAINE, NATALIE; WILHELM, CHRISTOPHER","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SW","SW","SW","12","36.0 N","8.0 E","N","","","","","406387.0","4136657.0","37.371933","-106.057281","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013409", +"2013560","W3726 WELL NO 05R","POND/SW CORNER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3726","10267-R, 10267-R-R, 10267-R-R","06-6-2157","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","SE","NE","SE","14","36.0 N","8.0 E","N","","","","","406281.0","4135488.0","37.361387","-106.058329","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013560", +"2013589","W3839 WELL NO 02R","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3839","14444-R-R","05119260/05119272","ESPERANZA FARMS LLC (VALDEZ, VIRGIL)","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","NW","NW","20","36.0 N","9.0 E","N","","","","","410037.0","4134514.0","37.352980","-106.015803","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2013589", +"2013707","W0312 WELL NO 01","ROBERT'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0312","12112-F","09060695/09060754","SCHNEIDER, CURTIS J. AND CANDACE G.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","NW","22","37.0 N","9.0 E","N","","","","","413768.0","4143799.0","37.437016","-105.974764","03/20/1996 00:00","https://dwr.state.co.us/Tools/Structures/2013707", +"2013718","RAKHRA WELL NO 37709-F","EAST DEEP WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","37709-F","99-4-1199","CLAIR, DON; RAKHRA MUSHROOM FARM CORP","RGWCD SD6","10/31/1996","10/31/2025","3","20","ALAMOSA","","","","SE","SE","26","38.0 N","10.0 E","N","","","","","425789.0","4151224.0","37.504978","-105.839643","02/18/2011 16:35","https://dwr.state.co.us/Tools/Structures/2013718", +"2013763","98CW035 WELL NO 1R","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0035","47728-F","10061611/10060099","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","SW","SW","NW","36","37.0 N","9.0 E","N","","","","","416296.0","4140601.0","37.408426","-105.945829","09/17/2007 14:13","https://dwr.state.co.us/Tools/Structures/2013763", +"2013764","98CW040 HOMELAKE WELL 4","EAST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0040","53183-F","11090021/05083096","COLORADO STATE VETERAN'S CENTER (KLIPPERT, CRYSTAL); MEDINA, JONATHON","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","SE","SE","SE","33","39.0 N","8.0 E","N","","","","","403221.0","4159267.0","37.575370","-106.096003","04/04/2000 00:00","https://dwr.state.co.us/Tools/Structures/2013764", +"2013825","96CW008 WELL NO 1","43762F","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","96CW0008","43762-F","07-10-1078","GERINGER, NATHAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","NE","NE","NE","20","38.0 N","8.0 E","N","","","","","401653.0","4154401.0","37.531352","-106.113105","04/04/2002 00:00","https://dwr.state.co.us/Tools/Structures/2013825", +"2013846","2004CW021 WELL NO 3R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","00CW0006, 04CW0021","54245--A","22030777, 22030781","LEASE, CHRIS & SHAWNA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","SW","SW","33","38.0 N","10.0 E","N","","","","","421238.0","4149562.0","37.489622","-105.890950","06/30/2021 11:51","https://dwr.state.co.us/Tools/Structures/2013846", +"2013869","2002CW0068 WELL NO 1","MAMA","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","02CW0068","13106-R, 13106-R-R","10061956/11061622","SCHAEFER, MICHAEL","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","SE","NW","2","38.0 N","7.0 E","N","","","","","396063.0","4158869.0","37.571003","-106.176994","09/10/2019 09:40","https://dwr.state.co.us/Tools/Structures/2013869", +"2013872","00CW0024 WELL NO 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","00CW0024","7316-R-R, 89727-F","16-05045-10","MCCORMICK, CHRISTY; ZIEGLER LIVING TRUST; ZIEGLER, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","NE","NE","SW","34","38.0 N","9.0 E","N","","","","","413731.0","4150160.0","37.494340","-105.975927","02/24/2005 10:16","https://dwr.state.co.us/Tools/Structures/2013872", +"2013889","03CW0007 WELL NO 1R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","03CW0007","15629-R-R","05-8-1144","TOLSMA, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SE","SW","20","37.0 N","9.0 E","N","","","","","410491.0","4143168.0","37.431018","-106.011725","10/13/2005 16:50","https://dwr.state.co.us/Tools/Structures/2013889", +"2013940","PERMIT 1887 R","1887 R","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","1887-R","11061518/11061554","ZIMMERMAN, ROBERT & KAREN; ZIMMERMAN, TREVER","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","10","37.0 N","11.0 E","N","","","","","432214.0","4147303.0","37.470133","-105.766595","08/21/2007 14:38","https://dwr.state.co.us/Tools/Structures/2013940", +"2013963","2006CW010 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0010","","3796624","BROWN, WILLIAM","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","6","37.0 N","11.0 E","N","","","","","428271.0","4147833.0","37.474612","-105.811233","01/24/2008 16:05","https://dwr.state.co.us/Tools/Structures/2013963", +"2013984","PERMIT 46764-F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","46764-F","10062691/10062882","WIDGER, KAREN; WIDGER, KAREN L. & MICHAEL JAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NE","SW","15","37.0 N","8.0 E","N","","","","","403641.0","4145533.0","37.451643","-106.089447","01/13/2014 10:27","https://dwr.state.co.us/Tools/Structures/2013984", +"2013985","07CW26 WELL NO 2-A","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0026","46502-F","06-8-3874","YODER, ROY & ROSE","RGWCD SD6","10/31/2009","10/31/2025","3","20","RIO GRANDE","","","","NW","SE","22","37.0 N","8.0 E","N","","","","","404412.0","4143542.0","37.433780","-106.080473","06/18/2010 15:58","https://dwr.state.co.us/Tools/Structures/2013985", +"2013990","PERMIT 13351-R-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","13351-R","09060684/072017003083","ARCHER, RODNEY; MEADOWS, JAMES E. & CAROLYN KAY","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NW","29","37.0 N","9.0 E","N","","","","","409676.0","4142482.0","37.424756","-106.020852","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013990", +"2013991","PERMIT 23185-F-","HOME","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","23185-F","05083007/10061995","GESINK, ELBERT & MARLA","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NW","NW","33","37.0 N","9.0 E","N","","","","","411683.0","4140981.0","37.411422","-105.997992","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013991", +"2013992","PERMIT 12131-R-","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: RIO GRANDE","01385432","","","12131-R, 303093-","6902297","HEERSINK, DEREK","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","NE","NW","19","37.0 N","10.0 E","N","","","","","418203.0","4144217.0","37.441186","-105.924684","10/29/2007 17:59","https://dwr.state.co.us/Tools/Structures/2013992", +"2014186","PERMIT 15311-FR","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","15311-F-R","20-04575-12","ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","NW","21","36.0 N","9.0 E","N","","","","","411305.0","4134234.0","37.350579","-106.001454","08/01/2008 11:38","https://dwr.state.co.us/Tools/Structures/2014186", +"2014332","PERMIT 20976-RR","DAD'S WELL, FKA WDID 2014325","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","20976-R-R","10061964/10061999","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); WIESCAMP, GRANT & MICHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","NE","5","36.0 N","9.0 E","N","","","","","410593.0","4139016.0","37.393608","-106.010070","07/02/2008 09:00","https://dwr.state.co.us/Tools/Structures/2014332", +"2014354","2006CW018 WELL NO 1R","IRRIGATION","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","06CW0018","65642-F","02082210/02082234","CURTO, MARIO L. & RITA C.","RGWCD SD6","10/31/2009","10/31/2025","3","20","ALAMOSA","","","","SW","SE","26","37.0 N","9.0 E","N","","","","","415795.0","4141362.0","37.415239","-105.951576","07/28/2014 14:23","https://dwr.state.co.us/Tools/Structures/2014354", +"2014440","21CW0004 WELL NO 3R","REPLACES WDID 2005165","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","21CW0004","8214-R-R","07-10-1094","REINHARDT, KENT & VIVIAN","RGWCD SD6","10/31/2009","10/31/2025","3","20","CONEJOS","","","","SW","SW","23","36.0 N","8.0 E","N","","","","","404870.0","4133754.0","37.345616","-106.074038","11/05/2025 13:28","https://dwr.state.co.us/Tools/Structures/2014440", +"2014462","05CW11 WELL NO 5-R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","05CW0011","24049-F, 47136-F, 65967-F","07-6-1008","WAGNER, JAMES J.","RGWCD SD6","10/31/2011","10/31/2025","3","20","ALAMOSA","","","","NW","SW","3","37.0 N","9.0 E","N","","","","","413034.0","4148518.0","37.479477","-105.983617","02/07/2011 15:21","https://dwr.state.co.us/Tools/Structures/2014462", +"2014472","2011CW2 WELL NO 01-R","DUTTON, FKA 2009497","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","11CW0002","2290-F-R","06-10-1550","NORTON, MATT; NORTON, MATT, JORDAN & BRENNON","RGWCD SD6","10/31/2012","10/31/2025","3","20","RIO GRANDE","","","","SW","SE","25","37.0 N","8.0 E","N","","","","","407280.0","4141699.0","37.417463","-106.047829","09/13/2013 12:09","https://dwr.state.co.us/Tools/Structures/2014472", +"2014624","20CW0009 WELL NO. 2-5-R","CODY WELL-REPLACEMENT","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","20CW0009","22538-F-R","07-8-1081","MORGAN, GARY","RGWCD SD6","10/31/2020","10/31/2025","3","20","ALAMOSA","","","","NW","SW","34","37.0 N","9.0 E","N","","","","","413333.0","4140129.0","37.403899","-105.979250","12/06/2023 15:00","https://dwr.state.co.us/Tools/Structures/2014624", +"2105000","W1455 WELL NO 01","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1455","12977-R","05-10-1544","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","NE","NW","SW","18","36.0 N","10.0 E","N","","","","","418007.0","4135463.0","37.362272","-105.925928","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105000", +"2105001","W1455 WELL NO 02","LITTLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1455","12976-R","07-4-1231","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","SW","18","36.0 N","10.0 E","N","","","","","417823.0","4135004.0","37.358119","-105.927955","09/17/2007 14:44","https://dwr.state.co.us/Tools/Structures/2105001", +"2105002","W1604 WELL NO 01","FKA WDID 2013981-HOME 1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0030, W1604","11822-R, 11822-R-R","07-8-1484","SOUTHERN STAR AG; SYKES, GLENN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","23","36.0 N","9.0 E","N","","","","","414511.0","4134305.0","37.351520","-105.965268","10/20/2014 16:58","https://dwr.state.co.us/Tools/Structures/2105002", +"2105003","W0164 WELL NO 01","VALDEZ WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0164","20323-R","22-06817-12","HENDERSON, COLIN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","28","35.0 N","9.0 E","N","","","","","412005.0","4122790.0","37.247505","-105.992196","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105003", +"2105005","W0188 WELL NO 01","GORDON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0188","780-R","24100486","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","21","36.0 N","10.0 E","N","","","","","421359.0","4133171.0","37.341905","-105.887836","05/29/2009 11:26","https://dwr.state.co.us/Tools/Structures/2105005", +"2105006","W1975 WELL NO 01","WEST 40","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1975","10909-R","07-12-1046","VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","6","35.0 N","9.0 E","N","","","","","409219.0","4128476.0","37.298483","-106.024299","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105006", +"2105008","W2264 WELL NO 01","JOE VALDEZ HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2264","20767-R","20-02584","VALDEZ, JOE T.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","9","35.0 N","9.0 E","N","","","","","411231.0","4127044.0","37.285771","-106.001429","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105008", +"2105009","W2521 WELL NO 15","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2521","19397-R","07-10-1039","L-11 FARMS LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","4","35.0 N","10.0 E","N","","","","","421062.0","4128355.0","37.298474","-105.890676","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105009", +"2105010","W0266 WELL NO 02","CARMEL FIRE STATION ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0031, W0266","6851-R","20-05747-10","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/1996","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","24","36.0 N","8.0 E","N","","","","","407208.0","4133391.0","37.342581","-106.047600","01/06/2025 10:57","https://dwr.state.co.us/Tools/Structures/2105010", +"2105011","W0293 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0293","6024-R","07-10-1143","HAMILTON, CLAY; HAMILTON, DIANA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","30","36.0 N","9.0 E","N","","","","","408026.0","4131802.0","37.328341","-106.038170","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105011", +"2105012","W0317 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0317","980-R","07-6-1106","ARCHER, RODNEY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","24","36.0 N","9.0 E","N","","","","","416089.0","4133365.0","37.343192","-105.947347","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105012", +"2105013","W0354 WELL NO 02","WM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","98CW0009, W0354","10908-R","15-02721","GYLLING, IVAN W.","RGWCD SD6","10/31/2001","10/31/2025","3","21","CONEJOS","","","SW","NW","NE","31","36.0 N","9.0 E","N","","","","","408831.0","4131324.0","37.324113","-106.029026","05/03/2012 16:13","https://dwr.state.co.us/Tools/Structures/2105013", +"2105014","W0458 WELL NO 01","#10","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0458","12108-R","07-10-1152","BOOTH, JACE; MARTIN, JANELL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","25","36.0 N","9.0 E","N","","","","","417688.0","4131569.0","37.327148","-105.929097","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105014", +"2105015","W0616 WELL NO 01","VALDEZ HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0616","62751-F","04061480/11061647","SILVA FARM & RANCH, LLC (SILVA, INOCENCIO)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","10","35.0 N","9.0 E","N","","","","","413678.0","4127279.0","37.288120","-105.973855","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105015", +"2105016","W0929 WELL NO 01","BRUSH FIELD","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0929","14216-R","GT18101020","MILLER, DAVID V. & CONSTANCE J.; MILLER, VAUGHN & CONNIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NW","1","35.0 N","9.0 E","N","","","","","416186.0","4129571.0","37.309006","-105.945823","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105016", +"2105017","W0962 WELL NO 01","JACK'S PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0962","6726-R","07-10-1151","BOOTH, ED; MARTIN, JANELL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","28","36.0 N","9.0 E","N","","","","","411255.0","4132479.0","37.334757","-106.001808","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105017", +"2105021","W2332 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","82CW0123, W2332","6837-R, 6837-R-R","03103795/05060266","HENDERSON, JAMES; SHAWCROFT FAATZ, MARTILLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","36","36.0 N","9.0 E","N","","","","","416852.0","4129998.0","37.312915","-105.938357","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105021", +"2105022","80CW031 WELL NO 02R","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","80CW0031","26595-F","15-05708","MARTIN, JANELL","RGWCD SD6","10/31/1996","10/31/2025","3","21","CONEJOS","","","","NW","SW","21","36.0 N","9.0 E","N","","","","","411653.0","4133669.0","37.345520","-105.997458","05/03/2012 16:24","https://dwr.state.co.us/Tools/Structures/2105022", +"2105026","W0453 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0453","20311-R, 89297-F","07-12-1037","MCCARROLL, BRAD & KIM","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","10","35.0 N","9.0 E","N","","","","","412859.0","4127205.0","37.287376","-105.983085","06/15/1987 00:00","https://dwr.state.co.us/Tools/Structures/2105026", +"2105031","W0465 WELL NO 02","BIG WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","90CW0011, W0465","14228-R","19-04780-10","REYNOLDS, JACK L.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","25","36.0 N","10.0 E","N","","","","","425764.0","4132137.0","37.332948","-105.838007","09/17/2007 14:45","https://dwr.state.co.us/Tools/Structures/2105031", +"2105037","W0024 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0024","440-R","10061612/10061626","CASH, RON; ROGERS, JUSTIN A.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","32","36.0 N","9.0 E","N","","","","","409636.0","4130403.0","37.315891","-106.019829","09/17/2007 14:45","https://dwr.state.co.us/Tools/Structures/2105037", +"2105040","W0025 WELL NO 02","HOME QTR-FAR SOUTHWEST PUMP","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0025","7218-R","06-10-1532","FAUCETTE, GERALD; PRICE, STANLEY & JANICE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","29","36.0 N","9.0 E","N","","","","","409628.0","4131815.0","37.328616","-106.020091","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105040", +"2105041","W0025 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0025","10394-F","22-04085-12","FAUCETTE, GERALD; PRICE, STANLEY & JANICE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","29","36.0 N","9.0 E","N","","","","","410428.0","4132067.0","37.330965","-106.011093","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105041", +"2105042","W0039 WELL NO 01","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0039","20314-R, 20314-R-R","07-10-1118","ARMSTRONG, MITCH","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","33","36.0 N","9.0 E","N","","","","","412843.0","4130006.0","37.312619","-105.983594","09/17/2007 14:44","https://dwr.state.co.us/Tools/Structures/2105042", +"2105044","W0056 WELL NO 01","HOME WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0056","2448-F","19-05677-10","COOMBS, JASON; COOMBS, LARRY W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","28","36.0 N","9.0 E","N","","","","","412025.0","4132639.0","37.336272","-105.993136","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105044", +"2105045","W0058 WELL NO 01","LEO O. PRICE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0058","4566-R","10060723/12212604","ROBERTS, MICHON & THOMAS LEE II","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SE","22","36.0 N","9.0 E","N","","","","","413727.0","4133667.0","37.345697","-105.974045","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105045", +"2105046","W0111 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0111","770-R","10061615/10061630","DERRELL SHAWCROFT FAMILY RANCH LLC (SHAWCROFT, MARGARET & GREG)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","7","35.0 N","9.0 E","N","","","","","408820.0","4126929.0","37.284502","-106.028610","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105046", +"2105055","W0157 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0157","10543-R","22-027424-14","CHAVEZ, CURTIS","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","12","35.0 N","8.0 E","N","","","","","407992.0","4126882.0","37.283997","-106.037944","05/24/2005 10:09","https://dwr.state.co.us/Tools/Structures/2105055", +"2105056","W0180 WELL NO 01","RUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0180","5910-R, 35-WCB, 329421-","24-07513-10","LARSEN, RHETT","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","22","36.0 N","10.0 E","N","","","","","422727.0","4134173.0","37.351051","-105.872498","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105056", +"2105058","W0202 WELL NO 01","SOUTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10206-R, 10206-R-R","07-8-1279","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SW","2","35.0 N","8.0 E","N","","","","","404777.0","4128745.0","37.300463","-106.074445","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105058", +"2105059","W0202 WELL NO 02","NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10207-R, 10207-R-R, 10207-R-R","06-10-1107","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","2","35.0 N","8.0 E","N","","","","","404774.0","4129397.0","37.306339","-106.074562","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105059", +"2105062","W0251 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0251","2988-F","20-03723-12","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NE","34","36.0 N","10.0 E","N","","","","","423693.0","4130705.0","37.319874","-105.861235","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105062", +"2105072","W0267 WELL NO 01","HOME PLACE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0267","6852-R","07-12-1069","CROWTHER, LEE & MICHELLE ; VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","5","35.0 N","9.0 E","N","","","","","410045.0","4129280.0","37.305810","-106.015078","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105072", +"2105077","W0353 (15CW3002) WELL NO 01","ACROSS FROM JOANN","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","15CW3002, W0353","3919-F, 90507-F","25-02184-10","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","30","36.0 N","9.0 E","N","","","","","408018.0","4132560.0","37.335172","-106.038354","09/03/2020 14:02","https://dwr.state.co.us/Tools/Structures/2105077", +"2105078","W0354 WELL NO 01","PUMP BY DIANA'S","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0354","13369-R","07-10-1062","HAMILTON, JACK J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","30","36.0 N","9.0 E","N","","","","","408023.0","4132185.0","37.331793","-106.038251","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105078", +"2105079","W0367 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0367","6177-F","06-12-1159","VALDEZ, LIONEL","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","NW","4","35.0 N","9.0 E","N","","","","","411660.0","4129265.0","37.305829","-105.996854","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105079", +"2105083","W0384 WELL NO 01","PUMP HOUSE #1-NORTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: LA JARA CREEK","00190746","","W0384","13971-F","19-01056-08","FOXWORTHY, MARK; LA JARA, TOWN OF (ATTN: WATER OPERATOR); ZARAGOZA, LARRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NE","SW","14","35.0 N","9.0 E","N","","","","","414942.5","4125893.6","37.275754","-105.959439","12/02/2020 19:54","https://dwr.state.co.us/Tools/Structures/2105083", +"2105084","W0384 WELL NO 02","PUMP HOUSE #2-SOUTH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0384","13928-F","19-01057-08","FOXWORTHY, MARK; LA JARA, TOWN OF (ATTN: WATER OPERATOR); ZARAGOZA, LARRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SE","SW","14","35.0 N","9.0 E","N","","","","","414972.0","4125303.0","37.270430","-105.959033","12/02/2020 19:55","https://dwr.state.co.us/Tools/Structures/2105084", +"2105087","W0428 WELL NO 01","HUTCHINSON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0428","20238-R","07-12-1053","WEBER, DONALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","24","35.0 N","8.0 E","N","","","","","407569.0","4124445.0","37.261991","-106.042412","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105087", +"2105088","W0429 WELL NO 01","MAPES LONG PIPE","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0429","1340-R","06-10-1509","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","28","36.0 N","9.0 E","N","","","","","412076.0","4131690.0","37.327724","-105.992448","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105088", +"2105089","W0429 WELL NO 02","SW HOME WELL-JOHNSON","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0429","20313-R","04061483/10242120","NATHEL GYLLING REVOCABLE TRUST; THOMAS, KRISTIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","32","36.0 N","9.0 E","N","","","","","411218.0","4130856.0","37.320126","-106.002032","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105089", +"2105090","W0465 WELL NO 01","QUINSET WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0465","14227-R","12062633/12062670","REYNOLDS, JACK L.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","23","36.0 N","10.0 E","N","","","","","425057.0","4133210.0","37.342562","-105.846095","09/17/2007 14:43","https://dwr.state.co.us/Tools/Structures/2105090", +"2105091","W0465 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0465","161-WCB, 14229-R","21-07000-10","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NW","SW","26","36.0 N","10.0 E","N","","","","","424258.0","4131925.0","37.330916","-105.854984","09/17/2007 14:43","https://dwr.state.co.us/Tools/Structures/2105091", +"2105131","W0492 WELL NO 01","WELL NO. 1 - M","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0492","20112-R, 335810-","24-05048-10","MORTENSEN, WILLIAM P.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","34","36.0 N","10.0 E","N","","","","","423344.0","4129893.0","37.312527","-105.865090","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105131", +"2105132","W0576 WELL NO 01","RESERVOIR WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0576","11058-R","07-8-1082","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SW","36","36.0 N","8.0 E","N","","","","","407190.0","4130242.0","37.314199","-106.047409","01/03/2013 09:32","https://dwr.state.co.us/Tools/Structures/2105132", +"2105134","W0581 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0581","3910-F","06-10-1545","MT VALLEY FARMS (SIMPSON, CLEAVE)","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","NW","7","36.0 N","10.0 E","N","","","","","417762.0","4137281.0","37.378635","-105.928896","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105134", +"2105138","W0615 WELL NO 01","WEST","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0615","62750-F, 79111-F","05-10-1494","SILVA FARM & RANCH, LLC (SILVA, INOCENCIO)","RGWCD SD6","10/31/2006","10/31/2025","3","21","CONEJOS","","","","SW","SW","3","35.0 N","9.0 E","N","","","","","412860.0","4128608.0","37.300021","-105.983238","05/03/2012 16:25","https://dwr.state.co.us/Tools/Structures/2105138", +"2105151","W0617 WELL NO 01","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0617","10316-R","07-14-1001","HUFFAKER, BRADLEY H. & LEANN R.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NE","SW","8","35.0 N","9.0 E","N","","","","","410076.0","4127304.0","37.288004","-106.014489","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105151", +"2105157","W0656 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0656","20239-R","14-08588-12","NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","19","35.0 N","9.0 E","N","","","","","408986.0","4125201.0","37.268944","-106.026526","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105157", +"2105159","W0660 WELL NO 01","#6","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0660","12797-R-R","16-04402-10","FRANSEN, NATHAN D.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","NW","29","36.0 N","9.0 E","N","","","","","409818.0","4132551.0","37.335268","-106.018036","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105159", +"2105162","W0669 WELL NO 01","SCHLOMER WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0669","13816-AD, 5845-F, 5845-F-R","21-01045-10","FAUCETTE, TYLER & ROCHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","36","36.0 N","10.0 E","N","","","","","426759.0","4131149.0","37.324122","-105.826678","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105162", +"2105164","W0716 WELL NO 01","W716","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0716","6876-R","07-10-1029","MCCARROLL, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","24","36.0 N","9.0 E","N","","","","","416893.0","4134004.0","37.349023","-105.938343","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105164", +"2105165","W0716 WELL NO 02","W0716-2","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0716","6877-R","07-10-1025","MCCARROLL, MARK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","16","35.0 N","9.0 E","N","","","","","412017.0","4125778.0","37.274436","-105.992414","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105165", +"2105167","W0731 WELL NO 01","HORTON WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0731","8716-R","GP12-3448-12","BAR TWO BAR RANCH, LLC (JUSTIN ROGERS & RONALD CASH); GYLLING, IVAN W.; ROGERS, JUSTIN A.; YUND, CHAY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NW","31","36.0 N","9.0 E","N","","","","","408030.0","4131024.0","37.321330","-106.038028","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105167", +"2105168","W0732 WELL NO 01","WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0732","5571-F","07-10-1048","GALLEGOS, DAVID; GONZALES, MARIA; GONZALES, MARTIN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","15","35.0 N","8.0 E","N","","","","","404324.0","4126217.0","37.277633","-106.079230","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105168", +"2105173","W0785 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","24CW3007, W0785","1836-R","072017003071/11060631","DECLERCK FARMS INC (DECLERCK, TRAVIS P & TRENTON J); VALLEY PRECISION ENGINEERING, LLC (CANTY, KIP)","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","SW","SW","SW","12","36.0 N","9.0 E","N","","","","","416139.0","4136461.0","37.371099","-105.947133","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105173", +"2105187","W0809 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0809","20792-R","07-12-1036","MARTINEZ, MICHAEL M.; VIGIL, AMANDA & MELANIE (VIGIL-GARCIA)","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","36","36.0 N","8.0 E","N","","","","","407196.0","4130966.0","37.320725","-106.047432","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105187", +"2105188","W0817 WELL NO 01","#3","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0817","8738-R","05-10-1256","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","NW","35","36.0 N","8.0 E","N","","","","","404748.0","4131764.0","37.327669","-106.075159","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105188", +"2105190","W0817 WELL NO 03","#2 WEST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0817","11715-F","05-10-1393","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","NW","34","36.0 N","8.0 E","N","","","","","403928.0","4131780.0","37.327728","-106.084416","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105190", +"2105191","W0819 WELL NO 01","CHURCH FARM WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0819","12502-R","07-16-1001","PETERSON FARMS & RANCH, LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NE","18","35.0 N","9.0 E","N","","","","","409617.0","4126028.0","37.276459","-106.019511","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105191", +"2105203","W0853 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0853","5820-R","07060383/07060926","GALLEGOS, RICHARD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","NW","NW","SW","22","36.0 N","9.0 E","N","","","","","412938.0","4133970.0","37.348354","-105.982988","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105203", +"2105215","W0875 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0875","20445-R","06-12-1118","PETERSON, ALAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","13","35.0 N","8.0 E","N","","","","","407573.0","4126006.0","37.276060","-106.042561","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105215", +"2105216","W0876 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0876","13900-R, 8826-AD","07-10-1121","SHAWCROFT, JEFF","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","19","36.0 N","10.0 E","N","","","","","418746.0","4133169.0","37.341662","-105.917332","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105216", +"2105244","W1054 WELL NO 01","DONNIE M.","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1054","6226-R","07-10-1072","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","3","35.0 N","10.0 E","N","","","","","423368.0","4129072.0","37.305129","-105.864734","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105244", +"2105247","W1058 WELL NO 03","SIMPSON RESERVOIR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1058","11853-R","23-04331-10","MT VALLEY FARMS (SIMPSON, CLEAVE); SIMPSON, ALAN","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","","NW","SE","8","36.0 N","10.0 E","N","","","","","420378.0","4137172.0","37.377881","-105.899340","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105247", +"2105303","W1275 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1275","21024-R, 21024-R-R","10061607/10061621","VALDEZ RANCHES, LLC (VALDEZ, STEPHEN A.); VALDEZ, STEPHEN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","4","35.0 N","9.0 E","N","","","","","411272.0","4129125.0","37.304531","-106.001215","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105303", +"2105305","W1283 WELL NO 01","RIVERA RANCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1283","21025-R","04212961/10242122","VALDEZ, ARMANDO; VALDEZ, ARMANDO & JESSICA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","11","35.0 N","8.0 E","N","","","","","405962.0","4127864.0","37.292644","-106.060965","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105305", +"2105306","W1284 WELL NO 01","LA JARA RANCH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1284","4457-F","02071275/12062786","VALDEZ, ARMANDO & JESSICA","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","22","35.0 N","9.0 E","N","","","","","412833.0","4124150.0","37.259840","-105.983020","01/23/2009 14:01","https://dwr.state.co.us/Tools/Structures/2105306", +"2105307","W1285 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1285","10287-R, 36-WCB","07-10-1197","GARCIA, MAC, CHRIS, ERNEST, JOHNNY & WILLIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","4","35.0 N","10.0 E","N","","","","","422577.0","4128326.0","37.298340","-105.873581","09/17/2007 14:41","https://dwr.state.co.us/Tools/Structures/2105307", +"2105310","W1288 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1288","9471-F","19-04342","MCCARROLL, BRYCEN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","SE","35","36.0 N","8.0 E","N","","","","","406377.0","4130332.0","37.314928","-106.056594","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105310", +"2105315","W1321 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1321","13093-R","12062621/12062646","MARLENE CROWTHER REVOCABLE TRUST; MORTENSEN, LOREN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","6","35.0 N","10.0 E","N","","","","","418630.0","4128819.0","37.302446","-105.918164","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105315", +"2105393","W1706 WELL NO 02","#6 BIG RED WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1706","2273-F","20-02934-10","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","36.0 N","8.0 E","N","","","","","405562.0","4132745.0","37.336593","-106.066098","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105393", +"2105395","W1707 WELL NO 03","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1707","","07-8-1252","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","35","36.0 N","8.0 E","N","","","","","405553.0","4130696.0","37.318126","-106.065939","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105395", +"2105396","W1707 WELL NO 06","GERALDS OLD KENT PLACE NORTH WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","W1707","11934-R","06-10-1106","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","35","36.0 N","8.0 E","N","","","","","405553.0","4130914.0","37.320090","-106.065966","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105396", +"2105424","W1787 WELL NO BRAIDEN","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1787","1344-R","06-12-1054","BRAIDEN, JIM; NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","14","35.0 N","8.0 E","N","","","","","405932.0","4125995.0","37.275797","-106.061066","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105424", +"2105430","W1849 WELL NO 02","MEADOW WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1849","5546-F","11061482/11061580","CROWTHER, SHAD MARK & BRIANNA LEI","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","NE","NW","32","36.0 N","10.0 E","N","","","","","419923.0","4131172.0","37.323765","-105.903830","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105430", +"2105464","13CW3001 WELL NO 01R","HOMEPLACE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3001, W1952","1210-R, 1210-R-R, 1210-R-R, 1210-R-R","13-09880-10","HAMILTON, JENSON T.","RGWCD SD6","10/31/2014","10/31/2025","3","21","CONEJOS","","","","NE","SE","7","35.0 N","9.0 E","N","","","","","409623.0","4127361.0","37.288474","-106.019605","10/08/2020 15:02","https://dwr.state.co.us/Tools/Structures/2105464", +"2105476","W1972 WELL NO 01","BENCH","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W1972","20357-R","07-10-1135","MCCARROLL, CRAIG A. & APRIL D.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","7","35.0 N","9.0 E","N","","","","","409215.0","4127680.0","37.291309","-106.024247","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105476", +"2105486","W1991 WELL NO 01","W","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","22CW0036, W1991","6694-R, 88769-F","07-10-1030","MORTENSEN, WILLIAM P.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","9","35.0 N","10.0 E","N","","","","","422150.0","4127462.0","37.290517","-105.878308","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105486", +"2105520","W2047 WELL NO 06","EAST WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2047","3440-F","05-10-1539","MUNIZ, DAVID; MUNIZ, DAVID & MARGARET MUNIZ","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","NE","SW","14","35.0 N","8.0 E","N","","","","","405134.0","4125802.0","37.273976","-106.070042","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105520", +"2105552","W2140 WELL NO 02","WELL BY CREEK","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2140","19768-R, 24-WCB, 26371-F","06-12-1144","NORTONVILLE CATTLE CO.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SE","22","36.0 N","10.0 E","N","","","","","423371.0","4133314.0","37.343362","-105.865139","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105552", +"2105617","W2244 WELL NO 06","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2244","1022-R","12062637/12062663","CACTUS HILL AG CONSULTING, LLC (TER KUILE-MILLER, MAYA); MARTINEZ, LEROY & ROSALIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","NE","SW","NE","7","36.0 N","10.0 E","N","","","","","418863.0","4137382.0","37.379643","-105.916473","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105617", +"2105618","W2244 WELL NO 07","CAR WASH ROAD WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2244","5052-F","21-01410-12","2 J RANCHES LLC. (MARTINEZ, JOSEPH); FINNEGAN, CHUCK","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","21","35.0 N","9.0 E","N","","","","","412015.0","4124396.0","37.261980","-105.992273","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105618", +"2105653","W2332 WELL NO 02","SCHOOL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2332","5566-F","02072533/12062777","HENDERSON, JAMES; SHAWCROFT FAATZ, MARTILLE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SW","14","35.0 N","9.0 E","N","","","","","415298.0","4125808.0","37.275011","-105.955414","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105653", +"2105668","W2503 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2503","13916-R, 13916-R-R","11060580/11060601","MILLER, VAUGHN & CONNIE","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SW","SW","SW","32","36.0 N","10.0 E","N","","","","","419366.0","4129924.0","37.312469","-105.909981","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2105668", +"2105882","PERMIT 47687 F","WEST PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","47687-F","11060551/11060637","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","SE","36","36.0 N","8.0 E","N","","","","","407479.0","4130476.0","37.316337","-106.044178","04/19/2007 14:24","https://dwr.state.co.us/Tools/Structures/2105882", +"2105883","PERMIT 47667 F","EAST PIVOT WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","","47667-F","11060551/11060637","GYLLING, IVAN W.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SE","36","36.0 N","8.0 E","N","","","","","407605.0","4130541.0","37.316935","-106.042764","12/17/2007 12:41","https://dwr.state.co.us/Tools/Structures/2105883", +"2105885","W-202 WELL NO 3","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: ALAMOSA RIVER","00190624","","13CW3005, W0202","10208-R-R","07-8-1490","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","2","35.0 N","8.0 E","N","","","","","405963.0","4129738.0","37.309533","-106.061191","09/21/2020 12:35","https://dwr.state.co.us/Tools/Structures/2105885", +"2105886","13CW3005 WELL NO 3-S","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW3005","33866-F","07-8-1490","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SW","NE","2","35.0 N","8.0 E","N","","","","","405689.0","4129454.0","37.306946","-106.064246","09/21/2020 12:40","https://dwr.state.co.us/Tools/Structures/2105886", +"2105887","PERMIT 52040 F","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","48671-F, 52040-F","94-6290-8","NORTON, KIP","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","SE","SW","NW","21","35.0 N","9.0 E","N","","","","","411593.0","4124480.0","37.262698","-105.997041","05/01/2007 10:08","https://dwr.state.co.us/Tools/Structures/2105887", +"2105892","13CW3005 WELL NO 1-S","BEHIND CELLAR","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3005","57594-F","07-8-1278","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","2","35.0 N","8.0 E","N","","","","","405151.0","4128880.0","37.301718","-106.070243","09/21/2020 12:22","https://dwr.state.co.us/Tools/Structures/2105892", +"2105897","PERMIT 24129-R-F","SMALL RES WELL-#5","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","24129-F-R","05-8-4292","REINHARDT, RONALD G. & MARY J.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","SE","NW","26","36.0 N","8.0 E","N","","","","","405478.0","4132702.0","37.336197","-106.067040","10/29/2007 18:01","https://dwr.state.co.us/Tools/Structures/2105897", +"2105900","13CW3010 WELL NO 2-A","VEGGIE QUARTER","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","13CW3010","43441-F, 43441-F-R","07-8-1432","ARMSTRONG, MITCH; ARMSTRONG, SHERRY","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NW","34","36.0 N","9.0 E","N","","","","","413255.0","4131210.0","37.323509","-105.979086","09/22/2020 08:25","https://dwr.state.co.us/Tools/Structures/2105900", +"2105901","PERMIT 22620-F-","NORTH PIVOT ","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","","22620-F","DM23-0925","SYKES, LISA K.","RGWCD SD6","10/31/2009","10/31/2025","3","21","ALAMOSA","","","","SW","NE","18","36.0 N","10.0 E","N","","","","","418764.0","4135951.0","37.366737","-105.917434","10/29/2007 18:01","https://dwr.state.co.us/Tools/Structures/2105901", +"2105904","13CW3005 WELL NO 2-S","MIDDLE WELL","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: UNCONFINED SAN LUIS VALLEY","","","13CW3005","32315-F","06-10-1107","FAUCETTE, GERALD","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","SW","2","35.0 N","8.0 E","N","","","","","404769.0","4129080.0","37.303482","-106.074578","09/21/2020 12:28","https://dwr.state.co.us/Tools/Structures/2105904", +"2105910","07CW30 WELL NO 1","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","07CW0030","51312-F","17-06001-8","SOUTHERN STAR AG; SYKES, GLENN","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NW","NE","23","36.0 N","9.0 E","N","","","","","415670.0","4134459.0","37.353014","-105.952201","02/07/2011 15:26","https://dwr.state.co.us/Tools/Structures/2105910", +"2106419","95CW009 WELL NO 01","VALDEZ FARM","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","95CW0009","10127-F","12204472/12204380","VALDEZ, GARRETT S.","RGWCD SD6","10/31/2009","10/31/2025","3","21","CONEJOS","","","","NE","SE","16","35.0 N","9.0 E","N","","","","","412837.0","4125835.0","37.275027","-105.983172","03/14/1996 00:00","https://dwr.state.co.us/Tools/Structures/2106419", +"2205024","W-3898 HOT WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3898","10167-F","19-08455, GP07-8-1251","FAUCETTE, TYLER & ROCHELLE","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","SW","NW","SE","30","36.0 N","11.0 E","N","","","","","428299.0","4132068.0","37.332525","-105.809387","01/04/2016 14:44","https://dwr.state.co.us/Tools/Structures/2205024", +"2205025","W3898 HOT WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W3898","10165-F, 309913-","18-05411-10","FAUCETTE LAND & CATTLE LLC","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","NE","NW","SW","2","35.0 N","10.0 E","N","","","","","424263.0","4128939.0","37.304004","-105.854622","04/12/2018 08:52","https://dwr.state.co.us/Tools/Structures/2205025", +"2205111","W0392 WELL NO 01","SIMPSON WELL W-392--1","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0392","20111-R","08-8-2240","UNITED STATES BUREAU OF LAND MANAGEMENT (SMITH, ROY)","RGWCD SD6","10/31/2010","10/31/2025","3","22","CONEJOS","","","","NW","NW","12","35.0 N","10.0 E","N","","","","","425788.0","4127870.0","37.294492","-105.837309","12/02/2020 20:00","https://dwr.state.co.us/Tools/Structures/2205111", +"2205146","W0715 WELL NO 02","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W0715","3080-F","07-10-1253","JOHNSON, SCOTT (LA JARA)","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SW","SW","11","35.0 N","10.0 E","N","","","","","424167.0","4126682.0","37.283653","-105.855475","03/26/2014 16:05","https://dwr.state.co.us/Tools/Structures/2205146", +"2205927","W2233 WELL NO 01","","Active Structure with contemporary diversion records (A)","WELL","GROUNDWATER: CONFINED SAN LUIS VALLEY","","","W2233","2053-F","06-10-1538","VALLEY LAND & CATTLE, LLC (MILLER, MITCH)","RGWCD SD6","10/31/2009","10/31/2025","3","22","CONEJOS","","","","SE","SE","2","35.0 N","10.0 E","N","","","","","425771.0","4128284.0","37.298222","-105.837542","11/15/1995 00:00","https://dwr.state.co.us/Tools/Structures/2205927",